PHP - 不能在类方法中使用Heredoc?

时间:2010-04-09 13:34:29

标签: php heredoc

我正在编写控制器方法的代码,我需要用它来发送电子邮件。我正在尝试使用heredoc语法填写电子邮件正文,但是,结尾标记似乎无法被识别。

$this->email = new Email(); 
$this->email->from = 'Automated Email';
$this->email->to = 'me@myemail.com';
$this->email->subject = 'A new user has registered';
$this->email->body = <<<EOF

Hello, a new user has registered.

EOF;

$this->email->send();  

从开头<<< EOF向下(直到文件末尾)的所有内容都显示为引号中的内容。

有人能看出为什么这不起作用吗?

任何建议表示赞赏。

感谢。

1 个答案:

答案 0 :(得分:7)

检查“EOF”之后的分号后面没有任何空格。