时间:2021-07-01 10:21:17 帮助过:19人阅读
time;echo $mes;
Parse error: syntax error, unexpected '(', expecting ',' or ';' in C:\php\apache\htdocs\test5.php on line 5
class Mytime{
public $time;
function __construct() {
$this->time = date('Y-m-d H:i:s');
}
}
定义类时,类属性的值不能是可变的量
class Mytime{
public $time;
function __construct() {
$this->time = date('Y-m-d H:i:s');
}
}
定义类时,类属性的值不能是可变的量
版主真乃神人也