"解析错误:语法错误,意外'。'我不明白,因为我需要"。"备份文件

时间:2018-06-08 15:20:13

标签: php processwire

编辑:现在有效,感谢答案:)

我是第一次使用ProcessWire而且我跟随教程,并且显示了Parse Error。我已经阅读了教程,我的代码与教程中的代码相匹配,但在教程的任何地方都没有提到这个错误。

我的代码:

<?php require_once(./includes/functions.inc); ?>

错误信息是:

分析错误:语法错误,意外&#39;。&#39; (C:\ xampp \ htdocs \ bedlingtonfc \ processwire-master \ site \ templates \ includes \ head.inc的第1行)

帮助表示赞赏:)

3 个答案:

答案 0 :(得分:1)

<?php require_once("./includes/functions.inc"); ?>

需要引用字符串。

答案 1 :(得分:1)

应该是一个字符串

require_once('./includes/functions.inc');

答案 2 :(得分:1)

您缺少引号

<?php require_once("./includes/functions.inc"); ?>

http://php.net/manual/en/function.require-once.php