最佳实践:在 PHP 中使用长多行字符串?
注意:如果这是一个非常简单的问题,我很抱歉,但我对代码的格式有些强迫症。
我有一个类,它有一个函数,该函数返回一个字符串,该字符串将构成电子邮件的正文文本。我希望这个文本格式化,以便它在电子邮件中看起来正确,同时也不会使我的代码看起来很时髦。这就是我的意思:
class Something
{
public function getEmailText($vars)
{
$text = 'Hello ' . $vars->name . ",
The second line starts two lines below.
I also don't want any spaces before the new line, so it's butted up against the left side of the screen.";
return $text;
}
}
但它也可以写成:
public function getEmailText($vars)
{
$text = "Hello {$vars->name},\n\rThe second line starts two lines below.\n\rI also don't want any spaces before the new line, so it's butted up against the left side of the screen.";
return $text;
}
但是新行和回车有什么关系?有什么区别?是否等效于 或 ?在行之间创建线间隙时,应使用哪个?\n\n
\r\r
\n\r
然后是输出缓冲和heredoc语法的选项。
如何处理在对象中使用长多行字符串?