我有一个PHP页面,根据其GET回显JSON数据。例如:
HTTP://localhost/htdocs/includes/person_get.php ID [] = 1和ID [] = 2
[{"id":"1","name_first1":"Daniel","name_last1":"Pendergast"},{"id":"2","name_first1":"Dennis","name_last1":"Pendergast"}]
我想要做的是从另一个页面读取并解码为数组。我怎么能这样做?
答案 0 :(得分:1)
我个人会提取出将person_get
中的人检索到函数中的逻辑,并在person_get
和其他任何需要使用该逻辑的页面中包含该函数。
如果你的死人打电话给你,你可以使用file_get_contents
和json_decode
$data = json_decode(file_get_contents('http://localhost/htdocs/includes/person_get.php?id[]=1&id[]=2'));
答案 1 :(得分:0)