CURL采集

<?php
$url='';//输入'网址
 
$ch = curl_init();
 
$timeout = 5;//超时时间
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);

echo $file_contents;//输出内容

 

posted @ 2016-03-15 13:24  boystar  阅读(191)  评论(0编辑  收藏  举报