코드 복사 코드는 다음과 같습니다.
function geturl($url)
{
$ch = cur_init( );
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1)
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout) ;
//사용자 감지가 필요한 웹페이지에 다음 두 줄을 추가해야 합니다
//curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY)
//curl_setopt($ch, CURLOPT_USERPWD, US_NAME. ”:”.US_PWD) ;
$contents = 컬_exec($ch);
curl_close($ch);
$contents = str_replace("document.write('","",$contents) ;
$contents = str_replace("');","",$contents)
$contents = str_replace("\n","",$contents)
$contents = str_replace( "\","" ,$contents)
echo $contents
}
위 내용은 "옷 아래"의 내용을 포함하여 URL을 얻기 위한 "옷 아래" PHP의 함수 코드를 소개하고 있습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되길 바랍니다.