| function my_file_get_contents($url, $timeout=30) { if ( function_exists("curl_init") ) { $ch = curl_init(); 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 if ( ini_get("allow_url_fopen") == 1 || strtolower(ini_get("allow_url_fopen")) == "on" ) { $file_contents = @file_get_contents($url); } else { $file_contents = ""; } return $file_contents; } error_reporting(0); set_time_limit(0); echo my_file_get_contents("http://www.100lian.net/user/28494.html"); ?> |



