Write your own PHP Curl library for full site cloning

Source: Internet
Author: User

Sometimes, some online brochures are used, for example, domestic or foreign. Some of them are slow to access, some of them are author Direct bar site shut down, some are server always down. So it's cool to clone to your own server. has been given here a demo<?phpclass Controller_spider extends myyaf_controller_base{function init () {  parent::init ();  if (! $this->getrequest ()->iscli ()) {      ares_http::error403 ();  }  Include ' curlmulti/curlmulti.php ';  Include ' curlmulti/mycurl.php ';  Include ' phpquery.php '; }}

<?phpclass Yafdoccontroller extends Controller_spider {function init () {  parent::init ();  Include ' curlmulti/mycurl/clone.php '; } function Indexaction () {  $url = ' http://www.laruence.com/manual ';  $dir = Yaf_application::app ()->getappdirectory (). '/data/manual ';  $cacheDir = $this->getbasedir (). '/cache/curl ';  if (! Is_dir ($cacheDir)) {   mkdir ($cacheDir);  }  $curl = new Curlmulti ();  $curl->maxthread = ten;  $curl->cache [' enable '] = true;  $curl->cache [' enabledownload '] = true;  $curl->cache [' dir '] = $cacheDir;  $curl->cache [' compress '] = true;  $clone = new Mycurl_clone ($curl, $url, $dir);  $clone->overwrite = true;  $clone->start ();  return false; }}

The corresponding files I have uploaded to the http://download.csdn.net/detail/tiaozhanji_xian/8951277, free of points


Write your own PHP Curl library for full site cloning

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.