php CURLOPT错误Warning: curl_setopt() [function.curl-setopt]:...

如果当你在php中运行 CURLOPT_FOLLOWLOCATION 然后得到php提示错误信息为:
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set…

错误中提到两个关键safe_mode和 open_basedir,如果你是虚拟主机的没有设置APPCHE的权限是不能通过修改服务器配置来解决问题的,一般来说,服务器配置safe_mode都为off,然后为了一些安全对用户有一些限制,通过设置open_basedir来限制虚拟主机用户的PHP执行文件夹,因此当你使用CURLOPT_FOLLOWLOCATION (php curl函数,深层抓取数据)的时候,一旦有301转向等就会出现文中提到的错误信息.

在查了相关资料后,很快找到了解决办法,http://www.php.net/manual/en/function.curl-setopt.php,这些方法都在php官方帮助里有.

具体做法是在curl语句用不使用curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true),在php函数中自定义一个函数,

 代码如下 复制代码

function curl_redir_exec($ch,$debug="")
{
static $curl_loops = 0;
static $curl_max_loops = 20;
if ($curl_loops++ >= $curl_max_loops)
{
$curl_loops = 0;
return FALSE;
}
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
$debbbb = $data;
list($header, $data) = explode("\n\n", $data, 2);
$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($http_code == 301 || $http_code == 302) {
$matches = array();
preg_match('/Location:(.*?)\n/', $header, $matches);
$url = @parse_url(trim(array_pop($matches)));
//print_r($url);
if (!$url)
{
//couldn't process the url to redirect to
$curl_loops = 0;
return $data;
}
$last_url = parse_url(curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
/*    if (!$url['scheme'])
$url['scheme'] = $last_url['scheme'];
if (!$url['host'])
$url['host'] = $last_url['host'];
if (!$url['path'])
$url['path'] = $last_url['path'];*/
$new_url = $url['scheme'] . '://' . $url['host'] . $url['path'] . ($url['query']?'?'.$url['query']:'');
curl_setopt($ch, CURLOPT_URL, $new_url);
//    debug('Redirecting to', $new_url);
return curl_redir_exec($ch);
} else {
$curl_loops=0;
return $debbbb;
}
}

函数定义好后,curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true)这条语句替换为curl_redir_exec($ch)

这样以后,我想你的PHP文件应该不会提示错误了,关于这段代码,在提供PHP官方连接用可以找到.

时间: 2024-10-25 22:22:13

php CURLOPT错误Warning: curl_setopt() [function.curl-setopt]:...的相关文章

解决WordPress结构化数据插件Warning: curl_setopt() [function.curl-setopt]

一.站点校验始终显示"校验中-" 我使用WordPress结构化数据插件遇到的两个问题 不清楚这是什么原因,已经向站长反馈中心提交了问题,还未答复.如果有答复,三好公民会第一时间来分享的,期待. 当然,如果您知道原因的话,还望不吝赐教,非常感谢! 二.发布或更新文章时显示警告代码 启用WordPress结构化数据插件之后,发布文章或更新文章时就会出现错误代码,内容为:    代码如下 复制代码    Warning: curl_setopt() [function.curl-setop

PHP错误WARNING: SESSION_START() [FUNCTION.SESSION-START]解决方法_php技巧

做开发的时候,操作session有时候会遇到这个问题:Warning: session_start() [function.session-start]-- 系统环境:WIN2003+IIS6+PHP5.2.12 PHP出现类似如下错误: Warning: session_start()[function.session-start]: ...... failed: No such file or directory......等情况, 可以偿试修改一下php.ini文件中的session.au

php提示 Warning: touch() [function.touch]: Utime failed: Permission denied in错误

使用timthumb.php出现Warning: touch() [function.touch]: Utime failed: Permission denied in错误 我们先来看一下touch()函数例子 touch() 函数设置指定文件的访问和修改时间. touch(filename,time,atime) 例子  代码如下 复制代码 <?php touch("test.jpg"); ?> 应用例子时出现错误 用timthumb.php来做缩略图,本地测试很OK,

PHP错误Warning: Cannot modify header information - headers already sent by解决方法_php实例

今天在测试以下代码时遇到该错误: 复制代码 代码如下: session_start(); $_SESSION['username']=$username; echo "<script language='javascript'>location.href='../admin.php';</script>"; exit(); 出现错误: 复制代码 代码如下: Warning: Cannot modify header information - headers a

PHP错误Warning:mysql_query()解决方法_php技巧

php提示错误:Warning: mysql_query() [function.mysql-query]: Access denied for user 'ODBC'@'localhost' (using password: NO)代码: <?php class mysqlClass { function mysqlClass($host='localhost',$user='root',$pw='',$db='mysql') { $this->link=mysql_connect($hos

Warning: session_start() [function.session-start]

我的电脑中的错误提示 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at D:APMServ-v5.2.6APMServ5.2.6wwwhtdocsKingNerOAuserUserKqManage.php:1) in D:APMServ-v5.2.6APMServ5.2.6wwwhtdocsKi

php Warning:strstr()[function.strstr]:Empty delimiter

Warning: strstr() [function.strstr]: Empty delimiter 非常奇怪,难道php函数strstr的某个参数出问题了? 于是写了个测试的例子  代码如下 复制代码 <?php $text="asdfghjklqwertyuiopzxcvbnm"; //$key="g"; //根据php错误提示Empty delimiter,判断应该不会是$text的值出问题,所以故意注释了key值 if(strstr($text,

Warning: mssql_connect() [function.mssql-connect]:

我是这样做的,确定mssql是正常的用户名密码也可以,但下面就是不行. <?php教程  $con=mssql_connect( "localhost", "sa ", "123456 ") or die ('error');    ?>  错误提示  warning: mssql_connect() [function.mssql-connect]: unable to connect to server: $sa in d:php

SSH登陆错误 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

今天遇到问题,删除文件即搞定!! ~~~~~~~~~~~~~~ SSH登陆错误 WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!   Connection to 192.168.10.20 closed. [root@localhost ~]# ssh 192.168.10.88 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @     WARNING: REMOTE HOS