我有这个错误:
解析错误:语法错误,意外的 T_PAAMAYIM_NEKUDOTAYIM,期望 T_VARIABLE 在第 98 行的 blog/wp-content/plugins/plugin/php/utils/cloud_data.php 中
static public function set_templates()
{
static::fetch_templates(); // line 98
}
static private function fetch_templates($folder_identifier = '')
{
// ..
}
谷歌说T_PAAMAYIM_NEKUDOTAYIM意味着期待。所以错误意味着:期待 T_VARIABLE。
但为什么?fetch_templates()
函数将他的参数初始化为''
。