时间:2021-07-01 10:21:17 帮助过:27人阅读
$str='[\"1\",\"2\",\"3\",\"4\"]'; echo preg_replace('/\\\/','',$str);
------解决方案--------------------
可能是你在PHP的配置中开启了自动转义输入数据( magic_quotes_gpc),可以用 stripslashes()来消除转义符\
$input = '[\"1\",\"2\",\"3\",\"4\"]'; echo stripslashes($input);