imagettftext \\ n换行拼图

时间:2012-03-29 11:54:09

标签: php imagettftext

在PHP imagettftext中的

,我是否应该能够在这样的字符串中使用“\ n”换行?

// The text to draw
$text = 'Something\nElse';

当我尝试这个时,输出的文本在n之前显示带有2个反斜杠的“Something \\ nEllse”。

这不会导致换行。

首先,应该单个斜线n换行(\ n)?
其次,我如何让它工作?

由于

1 个答案:

答案 0 :(得分:4)

\n是换行符only when the string is delimited with double quotes

echo 'Something\nElse';  // outputs Something\nElse
echo "Something\nElse";  // outputs Something
                         //         Else