使用分页页面上的file_get_contents使用GET请求分析PHP Parse网页

时间:2016-03-04 08:27:32

标签: php http get pagination file-get-contents

我正在尝试使用file_get_contents解析网页。对于方法发布,我能够解析列表中的第一页。在此之后,页面内容将通过分页列出。

我们如何使用GET请求解析分页页面的内容?

例如:http://sample.com/results?page=3

代码:

$data = array(
        'page' => 1
        );

    $opts = array(
      'http'=>array(
      'method'=> 'GET',
      'headers' => $http_response_header,
       'content' => http_build_query($data),
       'timeout' => 100
        )

    );

    $context = stream_context_create($opts);

    $listfile1 = file_get_contents("http://sample.com/results?",false, $context);

我获得了分页页面的0条记录。

1 个答案:

答案 0 :(得分:0)

我能够使用上面列出的相同功能,定义了一个自定义功能,打破了分页。

但我也更改了网址。

       $listfile1 = file_get_contents("sample.com/results?page=".$number,false, $context);