PHP automatically saves remote picture classes

Source: Internet
Author: User

*/
Class getromatepic{
var $savaDir = ' pic/';
var $filePath = ' yun_qi_img/banner.gif ';
var $fileName = ' 111cn.net.gif ';

function __construct () {
$this->isdir ();
}


function Isdir ()
{
if (!is_dir ($this->savadir))
{
if (! mkdir ($this->savadir))
{
Exit (' directory does not exist and no write permission ');
}
}
$this->autogetremotefile ();
}

function Autogetremotefile ()
{
$content = file_get_contents ($this->filepath);
if ($content)
{
$hold = fopen ($this->savadir. $this->filename, ' w+ ');
if (fwrite ($hold, $content))
{
echo ' picture automatic acquisition success ';
Fclose ($hold);
}
Else
{
Echo ' Save failed ';
}
}
Else
{
echo ' Remote map is incorrect ';
}
}
}

Class Call method

New Getromatepic ();
Because of the constructors we use, we just need to create the class, and the rest will be executed automatically,
This article original in www.111cn.net reprint must indicate the source, otherwise will investigate.

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.