如何在PHP中将JavaScript文字对象转换为Json对象

前端之家收集整理的这篇文章主要介绍了如何在PHP中将JavaScript文字对象转换为Json对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个JS文字对象字符串,如{name:{first:“George”,middle:“William”},姓:“Washington”},我必须在Json中将其转换.我怎么能用 PHP做到这一点?
JS:
// Pretend we're POSTing this
var foo = {foo:{first:"George",middle:"William"}};

PHP

$foo = $_POST['foo'];
$foo = json_decode( stripslashes( $foo ) );
echo $foo->first;

信用到期的信用:https://www.youtube.com/watch?v=pORFYsgOXog

原文链接:https://www.f2er.com/php/136278.html

猜你在找的PHP相关文章