PHP will match the remote image address in the article and download the image to local _php tips

Source: Internet
Author: User

Using the regular expression of PHP to implement:

$content = ' Here is the content of the article, insert here a picture test  ';
$content = Stripslashes ($content);
$img _array = Array ();
Match all remote pictures
Preg_match_all ("/(src| SRC) =["| ' |] {0,} (http://(. *). (gif|jpg|jpeg|bmp|png)) /isu ", $content, $img _array);
$img _array = array_unique ($img _array [2]) that match out the non-duplicate picture;
Print_r ($img _array);

It matches the remote picture, and we need to keep it local. Here are two points to note:
1. Picture save path (Picture storage directory)
2. Actual access to picture address
Here is the complete example: (You can save to the local server to modify the appropriate place for testing)

<! DOCTYPE html>  

Above is the PHP is matching the remote picture address in the article and download pictures to the local implementation skills, I hope to help you learn.

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.