如何将json的结果放入标题中

时间:2018-02-28 21:50:33

标签: php

我只想将结果回显到标题位置,表示url。 我尝试了很多方法,但没有成功

这是我的代码:

>>> from operator import itemgetter

>>> sorted(my_list, key=itemgetter(*[i-1 for i in ordering]))
[[1, 1, 'c1'], [2, 1, 'c4'], [3, 1, 'c5'], [4, 1, 'c6'], [5, 1, 'c2'], [6, 1, 'c3'], [1, 2, 'c1'], [2, 2, 'c4'], [3, 2, 'c5'], [4, 2, 'c6'], [5, 2, 'c2'], [6, 2, 'c3']]

1 个答案:

答案 0 :(得分:0)

你有没有试过这个?

<?PHP

 $details1=json_decode(file_get_contents("http://2strok.com/download/download.json"));
 $details2=json_decode(file_get_contents($details1->data));
 header("Location: ".$details2->data);