服务器上,PHP file_get_contents 获取接口内容返回false,如何解决

file_get_contents函数多用来于来采集远程服务器上的内容,但使用file_get_contents函数之前我们在php.ini中是必须把allow_url_fopen开启才行

问题描述

fopen(),file_get_contents(),getimagesize() 等都不能正常获得网络上的内容,具体表现为凡参数是URL的,一律返回空值

如果是windows可找开

allow_url_fopen开启

如果是否linux中可以

重新编译PHP,去掉–with-curlwrapper 参数——编译前记得先执行 make clean。

windows 在未开户allow_url_fopen时我们利用

< ?php
  $file_contents = file_get_contents(’‘http://www.php100.com/’’);
  echo $file_contents;
?>
是获取不到值的,但我们可以利用function_exists来判断此函数是否可用。

复制代码
function file_get_content(KaTeX parse error: Expected '}', got 'EOF' at end of input: …tents')) {     file_contents = @file_get_contents(KaTeX parse error: Expected 'EOF', got '}' at position 9: url);   }̲   if (file_contents == ”) {
     c h = c u r l i n i t ( ) ;         ch = curl_init();      ch=curlinit();    timeout = 30;
    curl_setopt($ch, CURLOPT_URL, u r l ) ;         c u r l s e t o p t ( url);     curl_setopt( url);    curlsetopt(ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, t i m e o u t ) ;         timeout);      timeout);    file_contents = curl_exec( c h ) ;         c u r l c l o s e ( ch);     curl_close( ch);    curlclose(ch);
  }
  return $file_contents;
}

你可能感兴趣的:(PHP,Mysql)