错误分析错误:语法错误,意外T_STRING,期待T_CONSTANT_ENCAPSED_STRING

Gre*_*reg 21 php wordpress

我收到此错误:

"解析错误:语法错误,意外T_STRING,期待T_CONSTANT_ENCAPSED_STRING或'('[wordpress dir]/wp-content/themes/[my-theme] /functions.php在第14行"

第14行只是一个简单的use命令......

13-15行:

add_action('headway_setup_child_theme', array('HeadwaySchematic', 'init'), 1);
use mfbcaptheme\mobilebrowsertheme;
require_once 'mobilebrowsertheme.php';
Run Code Online (Sandbox Code Playgroud)

这是在客户端的网站上,它在我的测试网站上运行良好....不确定是什么会导致此错误.

Joh*_*nde 39

确保它们运行的​​是PHP 5.3或更高版本.如果它们运行的​​是早期版本,则它们不支持名称空间.

  • 谢谢.这解决了我的问题. (2认同)