Php file_get_contents return NULL invalid Solution

Source: Internet
Author: User

The file_get_contents function is used to collect content on the remote server. However, before using the file_get_contents function, we must enable allow_url_fopen in php. ini.

Problem description

Fopen (), file_get_contents (), getimagesize (), and so on cannot get the content on the network normally. The specific manifestation is that all URL parameters return NULL values.

For windows

Allow_url_fopen enabled

If you can

Re-compile PHP and remove the-with-curlwrapper parameter. Run make clean before compiling.


When windows does not open allow_url_fopen, we use

The Code is as follows: Copy code

<? Php
$ File_contents = file_get_contents (''http: // www.bkjia.com /'');
Echo $ file_contents;
?>

However, function_exists can be used to determine whether the function is available.

The Code is as follows: Copy code


Function file_get_content ($ url ){
If (function_exists ('file _ get_contents ')){
$ File_contents = @ file_get_contents ($ url );
}
If ($ file_contents = "){
$ 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 );
}
Return $ file_contents;
}


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.