使用未定义常量(整数)
Use of undefined constant (integer)
这是我的class。我正在使用 yii2。 PHP 5.6。它无法加载页面,显示
Use of undefined constant 5242880 - assumed '5242880'
class PicturesOfUser extends \yii\db\ActiveRecord
{
const USER_IMG_SIZE=5242880;
}
我测试了那个代码,当我从这里复制时,那个数字有一些其他编码的字符或一些其他编码,但是当我自己重写那个数字时,它没有显示错误
const USER_IMG_SIZE = 5242880;
这是我的class。我正在使用 yii2。 PHP 5.6。它无法加载页面,显示
Use of undefined constant 5242880 - assumed '5242880'
class PicturesOfUser extends \yii\db\ActiveRecord
{
const USER_IMG_SIZE=5242880;
}
我测试了那个代码,当我从这里复制时,那个数字有一些其他编码的字符或一些其他编码,但是当我自己重写那个数字时,它没有显示错误
const USER_IMG_SIZE = 5242880;