강력한 호환성으로 원격 파일의 내용을 가져오는 간단한 PHP 함수 코드입니다. 이 기능을 사용하면 원격 파일의 내용을 직접 호출하여 쉽게 얻을 수 있습니다. 코드는 다음과 같습니다.
/** * 读远程内容 * @return string */ function get_url_content($url){ if(function_exists("curl_init")){ $ch = curl_init(); $timeout = 30; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch); }else{ $is_auf=ini_get('allow_url_fopen')?true:false; if($is_auf){ $file_contents = file_get_contents($url); } } return $file_contents; }
위 내용은 원격 파일의 내용을 얻기 위한 PHP의 함수 코드입니다. 이 글이 PHP 프로그래밍을 배우는 모든 분들께 도움이 되기를 바랍니다.