Php collects images in articles and replaces them with local ones (implementation code)

Source: Internet
Author: User
This article is a detailed analysis of the implementation code of replacing image acquisition with local in php collection articles. For more information, see The code is as follows:


/**
* Obtain the image path in the replacement document.
* @ Param string $ xstr content
* @ Param string $ name of the photo file created by keyword
* @ Param string $ oriweb URL
* @ Return string
*
*/
Function replaceimg ($ xstr, $ keyword, $ oriweb ){

// Save path
$ D = date ('ymmd', time ());
$ Dirslsitss = '/var/www/weblist/uploads/'. $ keyword. '/'. $ d; // whether the category exists
If (! Is_dir ($ dirslsitss )){
@ Mkdir ($ dirserver load balancer, 0777 );
}

// Match the image's src
Preg_match_all ('#] *> # I', $ xstr, $ match );

Foreach ($ match [1] as $ imgurl ){

$ Imgurl = $ imgurl;

If (is_int (strpos ($ imgurl, 'http '))){
$ Arcurl = $ imgurl;
} Else {
$ Arcurl = $ oriweb. $ imgurl;
}
$ Img = file_get_contents ($ arcurl );


If (! Empty ($ img )){

// Save the image to the server
$ Fileimgname = time (). "-". rand (, 9999). ". jpg ";
$ Filecachs = $ dirslsitss. "/". $ fileimgname;
$ Fanhuistr = file_put_contents ($ filecachs, $ img );
$ Saveimgfile = "/uploads/$ keyword". "/". $ d. "/". $ fileimgname;


$ Xstr = str_replace ($ imgurl, $ saveimgfile, $ xstr );
}
}
Return $ xstr;
}

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.