我需要你的帮助。
我需要从文本文件,"refresh":18});
但我不需要在此模式中删除大括号,我需要保存它。
我的代码
...
echo $data2 = str_replace(",\"refresh\":18});", "", $data);
...
如何更改我的正则表达式以删除模式,但不要删除} charecter?
答案 0 :(得分:0)
你为什么不用字符'}'替换整个模式? 试试吧:
echo str_replace(",\"refresh\":18});", "}", $data);