php 双引号之间加双引号

问题描述:

php 双引号之间加双引号
这样一行语句
$cmd = "more ".$str1.".bstn | awt '{print $9,"\n",$10}' > ".$str1.".txt";
会报错,请问如何修改?在中间的那个“\n”的地方报错.

php 双引号之间加双引号 双引号需要用反斜杠转义
正确的写法是:$cmd = "more ".$str1.".bstn | awt '{print $9,\"\n\",$10}' > ".$str1.".txt";