使用Preg_replace删除双引号

时间:2016-01-11 06:27:28

标签: php date preg-replace

我想通过使用preg_replace删除双引号请帮帮我

例如:

>>> 1 & 0
0
>>> 0 & 0
0
>>> 1 & 1
1

,输出

  

{start_date:“2011-01-01 09:00”,end_date:“2011-01-01 10:00”,文字:“测试”,开始:“2011-01-01 09:00”,日期:“2011-01-01 10:00”,文字:“test”}

我想要的是

  

{“start_date”:2011-01-01 09:00,“end_date”:2011-01-01 10:00,“text”:test,start:“2011-01-01 09:00”,“ date“:2011-01-01 10:00,”text“:test}

所以如果有人可以帮助我,我会非常感谢

1 个答案:

答案 0 :(得分:1)

以下是针对您案例的解决方案:

$str = preg_replace('/:\"+([^"]+?)\"+/', ':$1', $str);