1
hjxx 2016-06-30 17:37:49 +08:00 1
双引号 \t 会被解析成 tab
单引号 \t 不解析 |
3
daniellu 2016-06-30 17:53:06 +08:00 1
正则表达式啊, preg_replace.
|
5
raincious 2016-06-30 18:01:10 +08:00 1
@Mac
$str = str_replace(';', "\t", $str); http://php.net/manual/en/function.str-replace.php PHP 里,使用双引号包裹的字符串意味着 **解析器** 会对其进行解析,包括将转义字符转义。 单引号则表示原字符,其中的内容不会被解析器解析。这就是为什么你那两个字符串“看起来”一样,其实不一样。 |
6
zingl 2016-06-30 18:47:48 +08:00
有 php 之前、至少从 shell 开始就是双引号转义单引号不转义了
|