单色彩虹的答案比较完整,但做到获取结果只需要
$post = 'theCityCode=' . urlencode('杭州') . '&theUserID='; //post数据
$curl = curl_init();
$header[] = 'User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36';
$post = 'theCityCode=' . urlencode('杭州') . '&theUserID='; //post数据
$curl = curl_init();
$header[] = 'User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36';
2016-08-10
curl_setopt($curl, CURLOPT_HTTPHEADER, $header); //curl_opt_http_header包装请求头
curl_setopt($curl, CURLOPT_URL, 'http://ws.webxml.com.cn/WebServices/WeatherWS.asmx/getWeather');
curl_setopt($curl, CURLOPT_URL, 'http://ws.webxml.com.cn/WebServices/WeatherWS.asmx/getWeather');
2016-08-10
curl_setopt($curl, CURLOPT_HEADER, 0); //如果你想把一个头包含在输出中,设置这个选项为一个非零值。
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); //结果缓存,不直接输出
curl_setopt($curl, CURLOPT_POST, 1); //设置为post请求,否则默认为get
curl_setopt($curl, CURLOPT_POSTFIELDS, $post); //post的数据
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); //结果缓存,不直接输出
curl_setopt($curl, CURLOPT_POST, 1); //设置为post请求,否则默认为get
curl_setopt($curl, CURLOPT_POSTFIELDS, $post); //post的数据
2016-08-10
$response = curl_exec($curl);
curl_close($curl);
$xml = simplexml_load_string($response);
print_r($xml);
curl_close($curl);
$xml = simplexml_load_string($response);
print_r($xml);
2016-08-10
请求头里需要伪装成浏览器,
$header[] = 'User-Agent: xx';
$header[] = 'User-Agent: xx';
2016-08-10
这不是讲PHP基础,而是curl的运用。老师提出的完整的使用步骤,应用领域,以及注意重点,这就够了。想要深入理解每个细节,可以去看官方文档。如果老师去讲那个函数,这课时间不知多长,而且没有什么意思(又不是讲基础语法,函数)。
2016-08-02
在cmd实现php -i的前提就是在环境变量里添加,假如你的php安装在d盘的www的目录下:
path变量:D:\www\php54;D:\www\php54\ext;
path变量:D:\www\php54;D:\www\php54\ext;
2016-07-17