Use php to obtain images from webpages and save them to the local code.

Source: Internet
Author: User

Copy codeThe Code is as follows:
<? Php
Header ("Content-type: image/jpeg ");
Function read_url ($ str)
{
$ File = fopen ($ str, "r ");
While (! Feof ($ file ))
{
$ Result. = fgets ($ file, 9999 );
}
Fclose ($ file );
Return $ result;

}

Function save_img ($ str)
{
$ Result = read_url ($ str );
$ Result = str_replace ("\" "," ", $ result );
$ Result = str_replace ("\ '", "", $ result );

Preg_match_all ('/ |>)/I ', $ result, $ matches );

Foreach ($ matches [1] as $ value)
{
Echo $ value. "<br> \ n ";
// GrabImage ($ value, $ filename = "");
}
}

// $ Url is the complete URL of the remote image. It cannot be blank.
// $ Filename is an optional variable. If it is null, the local file name is based on the time and date.
// Automatically generated.

Function GrabImage ($ url, $ filename = ""){
If ($ url = ""): return false; endif;

$ Path = "download/"; // specify the storage folder

// If the object does not exist, it is created;
If (! File_exists ($ path )){
Mkdir ($ path );
}

If ($ filename = ""){
$ Ext = strrchr ($ url ,".");
If ($ ext! = ". Gif" & $ ext! = ". Jpg"): return false; endif;
$ Filename = $ path. date ("dMYHis"). $ ext;
}

Ob_start ();
Readfile ($ url );
$ Img = ob_get_contents ();
Ob_end_clean ();
$ Size = strlen ($ img );

$ Fp2 = @ fopen ($ filename, "");
Fwrite ($ fp2, $ img );
Fclose ($ fp2 );

Return $ filename;
}
Save_img ("http://www.jb51.net ");
?>

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.