Php regular expression matches the remote image address in the article and downloads the image to the local device.

Source: Internet
Author: User
Tags php regular expression
Php regular expression matches the remote image address in the article and downloads the image to the local device. Today, a simple collection program needs to download the content of the website of the other party, and then save the image in the content to the local server, next, I will introduce you to the specific operation method. the file_get_contents function is used to download images. the specific method is as follows.


Here we use the php regular expression to implement

$ Content = 'here is the content of the article. insert an image here to test '; $ content = stripslashes ($ content); $ img_array = array (); // match all remote images preg_match_all ("/(src | SRC) = [" | '|] {0,} (http ://(. *). (gif | jpg | jpeg | bmp | png)/isU ", $ content, $ img_array ); // matched non-repeated images $ img_array = array_unique ($ img_array [2]); print_r ($ img_array );

The above will match the remote image, and we need to keep it locally. Note the following two points:

1. image storage path (image storage directory)

2. actually accessing the image address

The following is a complete example: (you can save it to the local server and modify the corresponding places for testing)

 Php saves the remote image to the local device. The php regular expression matches the image address in the article.
 $ Value) {$ value = trim ($ value); // read the remote image $ get_file = @ file_get_contents ($ value ); // save to local image name $ imgname = date ("YmdHis "). '_'. rand (10000,999 99 ). ". ". substr ($ value,-3, 3); // the actual file address (including the path and name) saved locally $ fileName = $ imgPath. '/'. $ imgname; // The actual access address $ fileurl = $ imgUrl. "/". $ imgname; // if ($ get_file) {$ fp = @ fopen ($ fileName, "w"); @ fwrite ($ fp, $ get_file); @ fclos E ($ fp) ;}// replace the original image address $ content = ereg_replace ($ value, $ fileurl, $ content) ;}echo $ content;?>

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.