日期:2014-05-17 浏览次数:20692 次
$str='[\"1\",\"2\",\"3\",\"4\"]'; echo preg_replace('/\\\/','',$str);
------解决方案--------------------
可能是你在PHP的配置中开启了自动转义输入数据( magic_quotes_gpc),可以用 stripslashes()来消除转义符\
$input = '[\"1\",\"2\",\"3\",\"4\"]'; echo stripslashes($input);