通过PHP解决JSON中的换行符 回车

[{"id":"26","answer":[{"option":"4","text":"Hello
"}],"type":"3"}]

$json = preg_replace('/\r|\n/','\n',trim($json));

$jason_array = json_decode($json,true);

你可能感兴趣的:(前端,服务器,linux)