我想替换":"与" |"在这种情况下:
$path="C:/example";
我希望$path
与"C|/example"
我正在尝试preg_replace('/:/',"|", $path);
答案 0 :(得分:6)
$path = str_replace(':', '|', $path);
答案 1 :(得分:3)
使用str_replace
:
$value = str_replace(":", "|", $path);