gpt4 book ai didi

php - 使用表达式初始化类变量的有趣错误

转载 作者:行者123 更新时间:2023-12-02 07:51:53 26 4
gpt4 key购买 nike

为什么会报错?

class content {
protected $id,$title,$content,$image,$imagedirectory,$page;
protected $sid = md5(time()); //In this line : parse error, expecting `','' or `';''
}

最佳答案

md5(time()) 是一个表达式。

字段初始化不允许使用表达式,只能使用文字。

相反,你可以这样做:

class content {
protected $id, $title, $content, $image, $imagedirectory, $page, $sid;

public function __construct()
{
$this->sid = md5(time());
}
}

关于php - 使用表达式初始化类变量的有趣错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3327739/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com