4

我必须使用 javascript 将一组电子邮件地址编码为 json 字符串并使用 ajax 发送到 abc.php。在 abc.php 中,我必须对其进行解码并将电子邮件发送到该数组中的所有地址。

目前我正在使用将数组编码为json

var json_string = JSON.stringify(myarray);

在 abc.php 我正在解码它使用

$emails = json_decode($_POST['json_string']);
// json_string was passed as POST variable using ajax

但它在打印时给出 NULL..

我如何对其进行解码并访问 php 文件中的单个电子邮件

4

1 回答 1

3

如果您可以访问网络服务器的 php.ini,最好的办法是完全禁用 magic_quotes,因为它们已被弃用

; Magic quotes
;

; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off

; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off

如果您没有服务器访问权限,请使用带有以下选项的 .htaccess 文件

php_flag magic_quotes_gpc Off

如果您不想使用它,剩下的最后一件事就是使用 unescape 函数,例如

function ref_stripslashes(&$value,$key) {
    $value = stripslashes($value);
}

if((function_exists("get_magic_quotes_gpc") && get_magic_quotes_gpc()) || (ini_get('magic_quotes_sybase') && (strtolower(ini_get('magic_quotes_sybase'))!="off")) ) {
    array_walk_recursive($_GET,'ref_stripslashes');
    array_walk_recursive($_POST,'ref_stripslashes');
    array_walk_recursive($_COOKIE,'ref_stripslashes');
}

这取自php 手册,路西法的评论

json_decode($_POST['json_string'])然后应该工作。

于 2012-12-23T09:52:10.267 回答