class List {
public function hello()
{
return "hello";
}
}
$list = new List;
echo $list::hello();
给出错误:
PHP Parse error: syntax error, unexpected 'List' (T_LIST), expecting identifier (T_STRING) in /home/WtGTRQ/prog.php on line 3
将“列表”更改为“Lizt”可以解决此问题。
我很遗憾地理解Php 函数不区分大小写,但我真的不想让 List 对象成为 Lizt 对象......有没有办法在不重命名我的类的情况下规避这个问题?