通过递增网址

时间:2016-05-24 20:51:39

标签: php json

下面我在人们访问页面时从单个JSON文件获取内容:

$file = file_get_contents('http://linkjson.com?page=1');
$decode = json_decode($file);
echo $decode;

当人们访问该页面时,我如何使page=不断增加并解码其中的JSON?

因此,例如,当他们加载页面时,此脚本将自动运行,然后它将显示来自每个页面的JSON内容?每次自动为页码添加1:

$file = file_get_contents('http://linkjson.com?page=1');
$decode = json_decode($file);
echo $decode;

$file = file_get_contents('http://linkjson.com?page=2');
$decode = json_decode($file);
echo $decode;

$file = file_get_contents('http://linkjson.com?page=3');
$decode = json_decode($file);
echo $decode;

但它不会超过page=2,因为page=3为空(没有内容)。

包含内容的页面数量可能会有所不同,因此代码需要检查页面上是否包含内容,如果是,请对其进行解码并显示,然后转到下一页,检查其是否包含内容在它上面并解码它等等。

0 个答案:

没有答案