Thinkphp method of using Pclzip to pack up MySQL database _php instance

Source: Internet
Author: User
Tags decompress zip pack php template zip smarty template

The example in this article describes how thinkphp uses Pclzip to pack up a MySQL database. Share to everyone for your reference, specific as follows:

Pclzip describes the Pclzip Library's ability to compress and decompress zip formats (WINZIP, PKZIP), and to process such files, including producing compressed files, listing the contents of compressed files, and extracting files, etc.

Database backup is a very important thing, the way of backup is also a lot of the direct backup through the VPS, and some through the phpMyAdmin data for backup. Small knitting think these should be troublesome and backup good. sql files are too large to occupy a certain amount of space. So the SQL file is compressed with Pclzip, which saves a bit of space. Before the small series has written a database backup code here will not repeat, pclzip official download Address: Http://www.phpconcept.net/pclzip/pclzip-downloads (the latest version of 2-8-2).
Download the address of this site.

Look for file_put_contents in the DatabaseAction.class.php file add the following code below

Import ("ORG.") Util.pclzip ");
$archive = new Pclzip ('./data/'. Date ("y-m-d"). Zip ');
$v _list = $archive->create ($dir);
if (file_exists ($dir) && $v _list!= 0)
{
$this->success ("Backup succeeded && compression succeeded");
} else
{
die ("Error:". $archive->errorinfo (True));
$this->error ("Backup Failed");
}

And the original DatabaseAction.class.php Central Plains have if judge delete

More about thinkphp interested readers can view the site topics: "PHP operation zip file and compression skills summary", "PHP file Operation Summary", "thinkphp Introductory Course", "thinkphp Common Methods Summary", "Smarty Template Introductory Course" and "PHP Template technology Summary."

I hope this article will help you with the PHP program design based on thinkphp framework.

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.