标签: php html html-escape-characters
可能重复: How to replace “\” using str_replace() in PHP?
如何用0
我的代码: $output = "\x01\x02\x03\x04"; $string = str_replace( '\\' , "0", $output);
$output = "\x01\x02\x03\x04"; $string = str_replace( '\\' , "0", $output);
PS。 $output是十六进制字符串。
$output
答案 0 :(得分:4)
你说$string是一个现有的字符串,所以我认为你需要它反过来(和双引号而不是单引号):
$string
$output = str_replace("\\", "0", $string)