|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
完成一个功能齐全的动态站点 </p> 在利用php的curl获得近程文件,代码以下:
<?
$ghurl = isset($_GET["id"]) ? $_GET["id"]:"http://www.百度.com/";
// php 获得
function getContents($url){
$header = array("Referer: http://www.百度.com/");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_HTTPHEADER,$header);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); //是不是抓取跳转后的页面
ob_start();
curl_exec($ch);
$contents = ob_get_contents();
ob_end_clean();
curl_close($ch);
return $contents;
}
$contents = getContents($ghurl);
echo $contents;
?>
普通来讲在win2003+iis下如,把php_curl.dll设置装备摆设好就没成绩了。
但笔者在 linux+apahe2.0+php5.2.12+directadmin,(普通国外主机商都是用这设置装备摆设)假如获得的网址有301/302跳转,会报错:
curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in *** 关于这个成绩,谷歌,百度一下,都是在大篇长长的english,不精晓linux的还真头痛。
处理举措其实很复杂:上岸你的 directadmin
找到 ->>"PHP SafeMode Configuration" -->>看下图
把默许的 Default Safe 和 Default Open BaseDir 都 OFF,成绩就处理了。
我先解释一下我的学习思路。 |
|