请问给变量赋值的时候,如果有很多换行怎么办?
比如:$text="this is a test
and another
and another
...
"
这样写会出错,有什么办法实现呢?
谢谢 $text = "this is a test" & @CRLF & "and another" & @CRLF & "..." 谢谢版主,呵呵
再麻烦问一下有没有像php里
$text=<<<EOF
this is a test
and another
and another
...
EOF;
这种赋值方式呢? 回复 3# chinafla
不会PHP,所以不知道$text将会是个什么值。 谢谢版主,这个就是在php中可以不escape换行的赋值方法。
没关系,很感谢你的回复。
页:
[1]