用php读取远程或本地文件的时候,可能出现"Warning: fopen(): URL file-access is disabled in the server configuration", 用下面的函数就可以读取 

<?php 
/* 
   * @return string 
   * @param string $url 
   * @desc Return string content from a remote file 
   * @author Luiz Miguel Axcar ([email protected]
*/ 

function get_content($url) 

   $ch = curl_init(); 

   curl_setopt ($ch, CURLOPT_URL, $url); 
   curl_setopt ($ch, CURLOPT_HEADER, 0); 

   ob_start(); 

   curl_exec ($ch); 
   curl_close ($ch); 
   $string = ob_get_contents(); 

   ob_end_clean(); 
    
   return $string;     


#usage: 
$content = get_content (url); 
var_dump ($content); 
?>