调用网址并获取响应php

时间:2017-05-11 07:29:19

标签: php

大家好我试着打电话给网址并从中获取一些json,这是网址

control 你可以帮帮我吗?

1 个答案:

答案 0 :(得分:0)

  1. 定义HTTP-options 这些告诉流程该做什么。
  2. 使用stream_context_create
  3. 打开一个流
  4. 使用file_get_contents
  5. 阅读所有回复数据

    看起来像这样:

    $opts = [ 'http' => [
        'header' => [ /* what headers you want */ ],
        'method' => 'GET'
    ];
    $context = stream_context_create($opts);
    $content = file_get_contents("URL", false, $context);