通过Ajax将Javascript对象发送到PHP

通过Ajax将Javascript对象发送到PHP,第1张

通过Ajax将Javascript对象发送到PHP

如果数组的维数大于1,或者是关联数组,则应使用JSON。

Json将完整的数组结构转换为字符串。这个字符串可以很容易地发送到您的php应用程序,并转回一个php数组。

有关json的更多信息:http :
//www.json.org/js.html

var my_array = { ... };var json = JSON.stringify( my_array );

在php中,您可以使用json_depre解码字符串:

http://www.php.net/manual/zh/function.json-
depre.php

var_dump(json_depre($json));


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5428068.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存