Home >php教程 >php手册 >关于php 接口问题(php接口主要也就是运用curl,curl函数)

关于php 接口问题(php接口主要也就是运用curl,curl函数)

WBOY
WBOYOriginal
2016-06-06 20:28:531068browse

本篇文章是对php中的接口问题(php接口主要也就是运用curl,curl函数)进行了详细的分析介绍,需要的朋友参考下

接口问题
php调用接口最主要的就是使用curl抓取信息

复制代码 代码如下:


$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);  //url地址
curl_setopt($ch, CURLOPT_POST, true); //是否post请求
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); //post请求传递的数据
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//设置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//返回获取的输出文本流
$response = curl_exec($ch);   //获取返回的数据
curl_close($ch);    //关闭

,香港服务器,香港服务器租用,香港服务器
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn