How php reads remote images as binary

Source: Internet
Author: User
How can I read remote images in binary format and store them in a database. I used the following method, but var_dump is false (output $ contents is: bool (false )). When the remote http address is changed to a local image, var_dump can read data. Please advise, how to solve reading... how to read remote images as binary and then store them in the database.
I used the following method, but var_dump is false (output $ contents is: bool (false )).
When the remote http address is changed to a local image, var_dump can read data.
Please advise on how to read remote images in binary format. Thank you.

$url = "http://....../logo.png";        $handle = fopen($url,"rb");        $contents = fread($handle,filesize($url));    var_dump($contents);

Reply content:

How can I read remote images in binary format and store them in a database.
I used the following method, but var_dump is false (output $ contents is: bool (false )).
When the remote http address is changed to a local image, var_dump can read data.
Please advise on how to read remote images in binary format. Thank you.

$url = "http://....../logo.png";        $handle = fopen($url,"rb");        $contents = fread($handle,filesize($url));    var_dump($contents);

You must first determine whether the remote image is successfully obtained. It is possible that the recipient has blocked you.

This should help you.
CURL upload | download an object

Php. ini does not enable the settings. You need to set the fopen to open the website directly.

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.