(5)
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);// post数据
curl_setopt($curl, CURLOPT_POST, 1);// 请求数据
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);// 是否抓取跳转后的页面
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
$response = curl_exec($curl);
curl_close($curl);
$xml = simplexml_load_string($response);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);// post数据
curl_setopt($curl, CURLOPT_POST, 1);// 请求数据
curl_setopt($curl, CURLOPT_POSTFIELDS, $post);// 是否抓取跳转后的页面
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
$response = curl_exec($curl);
curl_close($curl);
$xml = simplexml_load_string($response);
2016-03-17
(4)
$header[] = 'Upgrade-Insecure-Requests: 1';
$header[] = 'User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36';
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
// 不输出header头信息
curl_setopt($curl, CURLOPT_HEADER, 0);
// 保存到字符串而不是输出
$header[] = 'Upgrade-Insecure-Requests: 1';
$header[] = 'User-Agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36';
curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
// 不输出header头信息
curl_setopt($curl, CURLOPT_HEADER, 0);
// 保存到字符串而不是输出
2016-03-17
(3)
$header[] = 'Content-Type: application/x-www-form-urlencoded';
$header[] = 'Host: www.webxml.com.cn';
$header[] = 'Origin: http://www.webxml.com.cn';
$header[] = 'Proxy-Connection: keep-alive';
$header[] = 'Referer: http://www.webxml.com.cn/WebServices/WeatherWS.asmx?op=getWeather';
$header[] = 'Content-Type: application/x-www-form-urlencoded';
$header[] = 'Host: www.webxml.com.cn';
$header[] = 'Origin: http://www.webxml.com.cn';
$header[] = 'Proxy-Connection: keep-alive';
$header[] = 'Referer: http://www.webxml.com.cn/WebServices/WeatherWS.asmx?op=getWeather';
2016-03-17
(2)
$header[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8';
$header[] = 'Accept-Encoding: gzip, deflate';
$header[] = 'Accept-Language: zh-CN,zh;q=0.8';
$header[] = 'Cache-Control: max-age=0';
$header[] = 'Content-Length: '.strlen($post);
$header[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8';
$header[] = 'Accept-Encoding: gzip, deflate';
$header[] = 'Accept-Language: zh-CN,zh;q=0.8';
$header[] = 'Cache-Control: max-age=0';
$header[] = 'Content-Length: '.strlen($post);
2016-03-17
按教程重新写了下代码,老师的教程是2014年的,可能有部分同学会跟着老师写,却发现没有任何结果,试试我下面的代码吧
(1)
$post='theCityCode='.urlencode('杭州').'&theUserID=';// 初始化
$curl = curl_init('http://ws.webxml.com.cn/WebServices/WeatherWS.asmx/getWeather');
$header = array();
(1)
$post='theCityCode='.urlencode('杭州').'&theUserID=';// 初始化
$curl = curl_init('http://ws.webxml.com.cn/WebServices/WeatherWS.asmx/getWeather');
$header = array();
2016-03-17
不太理解ftp的用户名和密码设定
但是理解 $data = 'username=demo_peter@126.com&password=123qwe&remember=1';
现在的慕课网版本不能这么写
应该这么写 $data = 'email=demo_peter@126.com&password=123qwe&remember=1';
但是理解 $data = 'username=demo_peter@126.com&password=123qwe&remember=1';
现在的慕课网版本不能这么写
应该这么写 $data = 'email=demo_peter@126.com&password=123qwe&remember=1';
2016-03-15
看到好多负面评论,我觉得,有基础的人,接触一个新东西,不管老师讲得怎么样,都比没人领路强多了,如果你不理解,只能说…………你的理解能力太差了
2016-03-13
两年前,看职来职往-新西兰期。 新西兰IT男,做了个抓取微博的软件,分析方言等不通地方的人讨论什么样的话题,当时觉的很神奇。但现在グッ!(๑•̀ㅂ•́)و✧
2016-03-13
讲真,讲得很好,多谢老师分享了。
第一集是有废话,但是是针对那些什么不懂的小白说的。但是接下来就是直接干货了,开1.5倍速度刷过去,真的好爽。时间性价比非常高的视频。
辛苦老师了。
看不懂的,请自己去提高自己的技能。
第一集是有废话,但是是针对那些什么不懂的小白说的。但是接下来就是直接干货了,开1.5倍速度刷过去,真的好爽。时间性价比非常高的视频。
辛苦老师了。
看不懂的,请自己去提高自己的技能。
2016-03-08