Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 如何在 PHP 中使用 str_replace() 替换“\”?
如何用 0 替换反斜杠
我的代码: $output = "\x01\x02\x03\x04"; $string = str_replace( '\\' , "0", $output);
$output = "\x01\x02\x03\x04"; $string = str_replace( '\\' , "0", $output);
附言。$output是一个十六进制字符串。
$output
你说这$string是一个现有的字符串,所以我认为你需要它(双引号而不是单引号):
$string
$output = str_replace("\\", "0", $string)