Home  >  Article  >  Backend Development  >  代码运行时报错,该怎么解决

代码运行时报错,该怎么解决

WBOY
WBOYOriginal
2016-06-13 11:43:20894browse

代码运行时报错
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 ) ) );

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn