PHP
·
发表于 5年以前
·
阅读量:8290
当我们要输彵一个换行时,一般会给字符串加上\n
来表示换行,如下所示:
text="fist line\nsecond line"
echo ${text}
但上面的输出并不能得到我们想相的效果,其输出内容为:
fist line\nsecond line
为了达到换行效果,需要在echo
后面加上参数-e
,如下:
text="fist line\nsecond line"
echo -e ${text}
其输出内容为:
fist line second line
补充说明:
- -e,enable interpretation of backslash escapes
- -E,disable interpretation of backslash escapes (default)
- -n,do not output the trailing newline