I recently started to work with yii, where can i find the yii version of my yii app?
In Linux, run ./yii in the base directory. In Windows, run yii.bat
. You will get something like:
./yii
This is Yii version 2.0.3.
The following commands are available:
[...]
grep -A 5 getVersion framework/YiiBase.php
Add following line after require_once ($yii); in the index file
echo Yii::getVersion();
You can use getVersion() of YiiBase
Yii::getVersion();
From the framework folder and file "YiiBase.php". Find the function : getVersion()
You Can find Yii Version in CHANGELOG - file In YII Install folder