标签: php regex
我需要在字符串中找到 $ 符号并将其替换为 \ $ 符号。
但是当我运行下面的代码时,我将 \ 0text 作为输出而不是 \ $ text
如何获得我需要的结果?
<?php $text = '$text'; $result = preg_replace('/(\$)/', '\\\0', $text); die($result); // output is \0text