看起来您的服务器已
magic_quotes_gpc启用。无论是将其禁用或运行
$stringJSON通过
stripslashes()使用它之前。
$stringJSON = get_magic_quotes_gpc() ? stripslashes($_GET['jsonstring']) : $_GET['jsonstring'];

看起来您的服务器已
magic_quotes_gpc启用。无论是将其禁用或运行
$stringJSON通过
stripslashes()使用它之前。
$stringJSON = get_magic_quotes_gpc() ? stripslashes($_GET['jsonstring']) : $_GET['jsonstring'];