get方式:

       //初始化
  $ch = curl_init();

  //设置选项,包括URL
  curl_setopt($ch, CURLOPT_URL, "http://www.jb51.net");
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_HEADER, 0);

  //执行并获取HTML文档内容
  $output = curl_exec($ch);

  //释放curl句柄
  curl_close($ch);

  //打印获得的数据
  print_r($output);

post方式:

       $url = "http://localhost/web_services.php";
  $post_data = array ("username" => "bob","key" => "12345");

  $ch = curl_init();

  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  // post数据
  curl_setopt($ch, CURLOPT_POST, 1);
  // post的变量
  curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);

  $output = curl_exec($ch);
  curl_close($ch);

  //打印获得的数据
  print_r($output);

以上方式获取到的数据是json格式的,使用json_decode函数解释成数组。

$output_array = json_decode($output,true);


示例:CI框架调用接口

curl实现get和post请求

数据:

curl实现get和post请求

相关文章:

  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2018-03-21
  • 2021-05-20
猜你喜欢
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
  • 2021-08-09
相关资源
相似解决方案