编辑:现在有效,感谢答案:)
我是第一次使用ProcessWire而且我跟随教程,并且显示了Parse Error。我已经阅读了教程,我的代码与教程中的代码相匹配,但在教程的任何地方都没有提到这个错误。
我的代码:
<?php require_once(./includes/functions.inc); ?>
错误信息是:
分析错误:语法错误,意外&#39;。&#39; (C:\ xampp \ htdocs \ bedlingtonfc \ processwire-master \ site \ templates \ includes \ head.inc的第1行)
帮助表示赞赏:)
答案 0 :(得分:1)
<?php require_once("./includes/functions.inc"); ?>
需要引用字符串。
答案 1 :(得分:1)
应该是一个字符串
require_once('./includes/functions.inc');
答案 2 :(得分:1)
您缺少引号
<?php require_once("./includes/functions.inc"); ?>