I recently started to work with yii, where can i find the yii version of my yii app?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
From the framework folder and file "YiiBase.php". Find the function : getVersion()
Add following line after require_once ($yii); in the index file
In Linux, run ./yii in the base directory. You will get something like:
You Can find Yii Version in CHANGELOG - file In YII Install folder
You can use
getVersion()
of YiiBasegrep -A 5 getVersion framework/YiiBase.php