Heredoc语法将值推送到数组中

时间:2013-11-19 13:36:07

标签: php arrays heredoc

当我使用heredoc语法将值推送到数组

时,我收到语法错误
$theArray = array();

$theArray[] = <<<EOT
some values here
EOT;

$theArray[] = <<<EOT
some values here
EOT;

我无法弄清楚这段代码有什么问题。

1 个答案:

答案 0 :(得分:0)

它应该工作得很好。执行print_r($theArray);会输出:

Array
(
    [0] => some values here
    [1] => some values here
)

Demo.

如果您收到解析错误,请仔细检查并确保在开头和/或结尾处的三个有角度的括号后面没有空格。