Require()在没有parens的localhost上工作,但在生产中出错

时间:2015-02-11 18:19:27

标签: php localhost require production parentheses

我有下面的代码,以及在localhost上完美运行的部分

<?php
require "core.php";
class Messenger
{
    private $phone;
    private $message;

我省略了其余的代码,因为它在这里并不重要。 所以这个代码在localhost上运行良好,但是当我将它上传到像demo.example.com这样的子域时,它会给出以下错误。

  

解析错误:语法错误,意外&#39;&#34; core.php&#34;&#39; (T_CONSTANT_ENCAPSED_STRING)

可能是什么问题?

0 个答案:

没有答案