我想使用preg_replace()替换PHP中{}之间的字符串中的'和'。
所以:
This is "some" {"text" : 'duudu', 'duuue' : "yey" }
应该是:
This is "some" {\"text\" : \"duudu\", \"duuue\" : \"yey\" }
请你就此提出建议吗?
答案 0 :(得分:1)
您可以使用preg_replace_callback来解决此问题。请考虑以下代码:
$str = 'This is "some" {"text" : \'duudu\', \'duuue\' : "yey" } "and" {"some", "other"} "text"';
echo preg_replace_callback('~({[^}]*})~', function($m) {
return preg_replace('~(?<!\\\\)[\'"]~', '\"', $m[1]);
}, $str) . "\n";
$repl= preg_replace('~(?<!\\\\) [\'"] (?! (?: [^{}]*{ [^{}]*} ) * [^{}]* $)~x',
'\"' , $str);
<强>输出:强>
This is "some" {\"text\" : \"duudu\", \"duuue\" : \"yey\" } "and" {\"some\", \"other\"} "text"