封装\符号

时间:2018-05-21 16:30:28

标签: php regex

我需要在字符串中找到 $ 符号并将其替换为 \ $ 符号。

但是当我运行下面的代码时,我将 \ 0text 作为输出而不是 \ $ text

如何获得我需要的结果?

<?php
$text = '$text';

$result = preg_replace('/(\$)/', '\\\0', $text);

die($result); // output is \0text

0 个答案:

没有答案