我想将数组从javascript传递到php。最简单的方法是什么?

javascript中的数组喜欢:

var resultArray = [
                    {"id":"1", "description":"aaa", "name":"zzz", "titel":"mmm"},
                    {"id":"2", "description":"bbb", "name":"yyy", "titel":"nnn"},
                    {"id":"3", "description":"ccc", "name":"xxx", "titel":"lll"},
                    {"id":"4", "description":"ddd", "name":"www", "titel":"qqq"},
                    {"id":"5", "description":"eee", "name":"vvv", "titel":"rrr"}
                  ]

windows.location.href = "searchResults.php?resultArray=" + JSON.stringify(resultArray);


在PHP中,我使用:

$resultArray = json_decode($_GET['resultArray']);

echo $resultArray[0]['id']; // should be "1", but show nothing


预先感谢您的每一个答复!

最佳答案

Its json_decode() not json.decode()

$resultArray = json_decode($_GET['resultArray']);


如果您是print_r($resultArray),则将获得一个标准的类数组,您可以通过echo $resultArray[0]->id访问它,并给您1;

09-25 14:45