php,echo<<< _END not fuctioninng

时间:2014-08-01 10:25:36

标签: php

我是php的新手,我的代码有问题,回声<<<< _END声明, 这是我的代码,

 echo <<< _END
               // few code lines goes here

  _END;

以下是错误消息

Parse error: syntax error, unexpected end of file,
expecting variable (T_VARIABLE) or heredoc end (T_END_HEREDOC) or
${ (T_DOLLAR_OPEN_CURLY_BRACES) or {$ (T_CURLY_OPEN) in /opt/lampp/htdocs/index.php

1 个答案:

答案 0 :(得分:9)

空白是一个问题。

echo <<<_END
        ^ no whitespace here!
v and none here either
_END;

否则,文件的其余部分都是您的HEREDOC,文件末尾是意外的。