Yii способ сделать это будет использовать YiiBase :: getPathOfAlias (), который переводит псевдоним в соответствующий путь.
Yii предопределяет эти псевдонимы
system: refers to the Yii framework directory;
zii: refers to the Zii library directory;
application: refers to the application's base directory;
webroot: refers to the directory containing the entry script file.
ext: refers to the directory containing all third-party extensions.
Итак, используя
$ imagePath = YiiBase :: getPathOfAlias ("webroot"). '/ Images';
даст вам необходимые результаты.