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向下(直到文件末尾)显示为在引号中. 任何人都可以看到为什么这不起作用? 任何建议表示赞赏 谢谢.
解决方法:
在“EOF”之后的分号后检查是否没有任何空格.
标签:heredoc,php 来源: https://codeday.me/bug/20190730/1582784.html