灰儿 发表于 2021-10-10 18:22:37

Parse error: syntax error, unexpected '?'

打开PHP网页时,提示如下错误:
Parse error: syntax error, unexpected '?' in /home/www/wwwroot/www.jsshedu.com/tool.php on line 114

源代码:

// 标题设置
if (isset($config['title'])) {
$tpl = str_replace('{{__TITLE__}}', $config['title'] ?? 'File Browser', $tpl);
}


原因:

双?? 语法在php7.0才有的。


页: [1]
查看完整版本: Parse error: syntax error, unexpected '?'