欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

代码运行时报错

程序员文章站 2022-05-15 12:15:24
...
preg_match( "/Location:(.*?)\\n/", $header, $matches );
$url = @parse_url( @trim( @array_pop( &$matches ) ) );
if ( !$url)
{
$curl_loops = 0;
return $data;
}
$last_url = parse_url( curl_getinfo( $ch, CURLINFO_EFFECTIVE_URL ) );
if ( !$url['scheme'] )
{
$url['scheme'] = $last_url['scheme'];
}
上面这段代码运行时也报错:Warning: Call-time pass-by-reference has been deprecated in E:\PHPnow-1.5.6\htdocs\source\core\util\class.curl.php on line 229
229行代码是:$url = @parse_url( @trim( @array_pop( &$matches ) ) );

回复讨论(解决方案)

allow_call_time_pass_reference=true

参见:http://php.net/manual/en/language.references.pass.php

$url = @parse_url( @trim( @array_pop( $matches ) ) );

相关标签: 代码运行时报错