如何在没有ajax的情况下将数组数组从javascript传递到php?

时间:2013-05-03 12:45:13

标签: php javascript ajax arrays

我想将一个数组数组从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

提前感谢您的回复!

3 个答案:

答案 0 :(得分:2)

json_decode 将为编码为JSON的对象创建对象。如果您想要一个关联数组,请将true作为第二个参数传递:

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

参考:http://php.net/manual/en/function.json-decode.php

答案 1 :(得分:0)

Its json_decode() not json.decode()

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

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

答案 2 :(得分:0)

它是json_decode,而不是json.decode