用零“0”替换反斜杠“\”

时间:2012-12-04 14:28:43

标签: php html html-escape-characters

  

可能重复:
  How to replace “\” using str_replace() in PHP?

如何用0

替换反斜杠

我的代码:
$output = "\x01\x02\x03\x04";
$string = str_replace( '\\' , "0", $output);

PS。 $output是十六进制字符串。

1 个答案:

答案 0 :(得分:4)

你说$string是一个现有的字符串,所以我认为你需要它反过来(和双引号而不是单引号):

$output = str_replace("\\", "0", $string)