Answer the question
In order to leave comments, you need to log in
Problem in Yii2 const how to specify correctly?
Hello!
you can not do it this way?
class MyModel extends \yii\db\ActiveRecord{
const FILE_URL = Yii::getAlias('@webroot').'/file/myfile.txt';
}
Answer the question
In order to leave comments, you need to log in
It is possible like this:
class MyModel extends \yii\db\ActiveRecord{
const FILE_URL = '/file/myfile.txt';
public static function getFileUrl(){
return Yii::getAlias('@webroot').self::FILE_URL;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question