php curl的几段小运用
程序员文章站
2022-06-08 22:54:31
...
php curl的几段小应用
php 的CURL是不错的功能,下面收藏几段不错的片段
1 测试网站是否运行正常
2 可以代替file_gecontents的操作
3 保存某个网站下的所有图片
php 的CURL是不错的功能,下面收藏几段不错的片段
1 测试网站是否运行正常
if (isDomainAvailible('http://gz.itownet.cn')) { echo "Up and running!"; } else { echo "Woops, nothing found there."; } //returns true, if domain is availible, false if not function isDomainAvailible($domain) { //check, if a valid url is provided if(!filter_var($domain, FILTER_VALIDATE_URL)) { return false; } //initialize curl $curlInit = curl_init($domain); curl_setopt($curlInit,CURLOPT_CONNECTTIMEOUT,10); curl_setopt($curlInit,CURLOPT_HEADER,true); curl_setopt($curlInit,CURLOPT_NOBODY,true); curl_setopt($curlInit,CURLOPT_RETURNTRANSFER,true); //get answer $response = curl_exec($curlInit); curl_close($curlInit); if ($response) return true; return false; } ?>
2 可以代替file_gecontents的操作
function file_get_contents_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser. curl_setopt($ch, CURLOPT_URL, $url); $data = curl_exec($ch); curl_close($ch); return $data; }
3 保存某个网站下的所有图片
function getImages($html) { $matches = array(); $regex = '~http://somedomain.com/images/(.*?)\.jpg~i'; preg_match_all($regex, $html, $matches); foreach ($matches[1] as $img) { saveImg($img); } } function saveImg($name) { $url = 'http://somedomain.com/images/'.$name.'.jpg'; $data = get_data($url); file_put_contents('photos/'.$name.'.jpg', $data); } $i = 1; $l = 101; while ($i
4 FTP应用// open a file pointer $file = fopen("/path/to/file", "r"); // the url contains most of the info needed $url = "ftp://username:password@mydomain.com:21/path/to/new/file"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // upload related options curl_setopt($ch, CURLOPT_UPLOAD, 1); curl_setopt($ch, CURLOPT_INFILE, $fp); curl_setopt($ch, CURLOPT_INFILESIZE, filesize("/path/to/file")); // set for ASCII mode (e.g. text files) curl_setopt($ch, CURLOPT_FTPASCII, 1); $output = curl_exec($ch); curl_close($ch);相关文章
相关视频
推荐阅读
-
PHP实用小技巧之调用录像的方法
-
php运行出现Call to undefined function curl_init()的解决方法
-
php下通过curl抓取yahoo boss 搜索结果的实现代码
-
PHP的cURL库功能简介 抓取网页、POST数据及其他
-
php curl 登录163邮箱并抓取邮箱好友列表的代码(经测试)
-
深入理解PHP原理之Session Gc的一个小概率Notice
-
php curl 获取https请求的2种方法
-
PHP Curl出现403错误的解决办法
-
php curl获取https页面内容,不直接输出返回结果的设置方法
-
php中curl和soap方式请求服务超时问题的解决