Table of Contents
Share how to backup database with thinkphp, backup database with thinkphp
Home Backend Development PHP Tutorial Thinkphp backup database method sharing, thinkphp backup database_PHP tutorial

Thinkphp backup database method sharing, thinkphp backup database_PHP tutorial

Jul 13, 2016 am 10:10 AM
thinkphp backup database

Share how to backup database with thinkphp, backup database with thinkphp

It seems that THINKPHP does not have a way to back up the database, so I wrote one myself. The database connection and transaction processing are using pdo. If you need it, you can contact me and write a mysql or mysqli

Copy code The code is as follows:

class SqlAction extends Action{
function outsql(){
header(“Content-Type:text/html;charset=utf-8″);
/*Read database configuration using C method*/
$host=C(‘DB_HOST’);
$db_name=C(‘DB_NAME’);
$user=C(‘DB_USER’);
$password=C(‘DB_PWD’);
/*Call the private method of exporting the database*/
$outstream=$this->outputSql($host, $dbname, $user, $password);
/*Download export database*/
header(“Content-Disposition: attachment; filename=$dbname.sql”);
echo $outstream;
}
/*
* Database export function outputSql
* Export database data using PDO
* $host host name such as localhost
* $dbname database name
* $user username
* $password password
* $flag flag bit 0 or 1. 0 means exporting only the database structure. 1 means exporting the database structure and data. The default is 1
*/
private function outputSql($host, $dbname, $user, $password, $flag=1) {
try {
$pdo = new PDO(“mysql:host=$host;dbname=$dbname”, $user, $password); //Connect to database
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); //Set tuning parameters and throw an exception when encountering an error
} catch (PDOException $e) {
echo $e->getMessage(); //If the connection is abnormal, an error message will be thrown
exit;
}
$mysql = "DROP DATABASE IF EXISTS `$dbname`;n"; //$mysql loads the sql statement. If a database exists here, drop the database
$creat_db=$pdo->query("show create database $dbname")->fetch();//Use show create database to view the sql statement
preg_match(‘/DEFAULT CHARACTER SET(.*)*/’, $creat_db[‘Create Database’],$matches);//Regularly remove the character set after DEFAULT CHARACTER SET
$mysql.=”CREATE DATABASE `$dbname` DEFAULT CHARACTER SET $matches[1]”;//This statement is such as CREATE DATABASE `test_db` DEFAULT CHARACTER SET utf8
/*Find the character sequence of the database such as COLLATE utf8_general_ci*/
$db_collate=$pdo->query(“SELECT DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA WHERE SCHEMA_NAME =’$dbname’ LIMIT 1″)->fetch();
$mysql.=”COLLATE “.$db_collate[‘DEFAULT_COLLATION_NAME’].”;nUSE `$dbname`;nn”;
$statments = $pdo->query("show tables"); //Return the result set, show tables to view all table names
foreach ($statments as $value) {//Traverse this result set and export the information corresponding to each table name
$table_name = $value[0]; //Get the table name
$mysql.=”DROP TABLE IF EXISTS `$table_name`;n”; //Prepare Drop statements before each table
$table_query = $pdo->query(“show create table `$table_name`”); //Get the result set of the table creation information
$create_sql = $table_query->fetch(); //Use the fetch method to retrieve the array corresponding to the result set
$mysql.=$create_sql[‘Create Table’] . “;rnrn”; //Write table creation information
if ($flag != 0) {//If the flag is not 0, continue to retrieve the contents of the table and generate an insert statement
$iteams_query = $pdo->query(“select * from `$table_name`”); //Get the result set of all fields in the table
$values ​​= ""; //Prepare empty string to load insert value
$items = ""; //Prepare empty string to load the table field name
while ($item_query = $iteams_query->fetch(PDO::FETCH_ASSOC)) { //Use associated query to return an array of field names and values ​​in the table
$item_names = array_keys($item_query); //Get the array key value, that is, the field name
$item_names = array_map(“addslashes”, $item_names); //Translate special characters and add
$items = join(‘`,`’, $item_names); //Joint field names such as: items1`, `item2 `symbol is backticks. Next to keyboard 1, field names are enclosed in backticks
$item_values ​​= array_values($item_query); //Get the array value, that is, the value corresponding to the field
$item_values ​​= array_map(“addslashes”, $item_values); //Translate special characters and add
$value_string = join(“‘,’”, $item_values); //Joint values ​​such as: value1′,'value2 values ​​are enclosed in single quotes
$value_string = “(‘” . $value_string . “‘),”; //Add brackets around the value
$values.=”n” . $value_string; //Finally returned to $value
}
if ($values ​​!= “”) {//If $values ​​is not empty, that is, the table has content
//Write insert statement
$insert_sql = “INSERT INTO `$table_name` (`$items`) VALUES” . rtrim($values, “,”) . “;nr”;
//Write this statement into $mysql
$mysql.=$insert_sql;
}
}

}
return $mysql;
}
}
?>

Isn’t it a very practical function? Friends can transplant it directly into their own projects.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/937091.htmlTechArticleShare the method of backing up the database in thinkphp. It seems that THINKPHP does not have a method to back up the database, so I wrote one myself. , database connection and transaction processing are used...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1662
14
PHP Tutorial
1262
29
C# Tutorial
1235
24
How to run thinkphp project How to run thinkphp project Apr 09, 2024 pm 05:33 PM

To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

There are several versions of thinkphp There are several versions of thinkphp Apr 09, 2024 pm 06:09 PM

ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

Which one is better, laravel or thinkphp? Which one is better, laravel or thinkphp? Apr 09, 2024 pm 03:18 PM

Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

Development suggestions: How to use the ThinkPHP framework to implement asynchronous tasks Development suggestions: How to use the ThinkPHP framework to implement asynchronous tasks Nov 22, 2023 pm 12:01 PM

"Development Suggestions: How to Use the ThinkPHP Framework to Implement Asynchronous Tasks" With the rapid development of Internet technology, Web applications have increasingly higher requirements for handling a large number of concurrent requests and complex business logic. In order to improve system performance and user experience, developers often consider using asynchronous tasks to perform some time-consuming operations, such as sending emails, processing file uploads, generating reports, etc. In the field of PHP, the ThinkPHP framework, as a popular development framework, provides some convenient ways to implement asynchronous tasks.

How to install thinkphp How to install thinkphp Apr 09, 2024 pm 05:42 PM

ThinkPHP installation steps: Prepare PHP, Composer, and MySQL environments. Create projects using Composer. Install the ThinkPHP framework and dependencies. Configure database connection. Generate application code. Launch the application and visit http://localhost:8000.

How is the performance of thinkphp? How is the performance of thinkphp? Apr 09, 2024 pm 05:24 PM

ThinkPHP is a high-performance PHP framework with advantages such as caching mechanism, code optimization, parallel processing and database optimization. Official performance tests show that it can handle more than 10,000 requests per second and is widely used in large-scale websites and enterprise systems such as JD.com and Ctrip in actual applications.

Development suggestions: How to use the ThinkPHP framework for API development Development suggestions: How to use the ThinkPHP framework for API development Nov 22, 2023 pm 05:18 PM

Development suggestions: How to use the ThinkPHP framework for API development. With the continuous development of the Internet, the importance of API (Application Programming Interface) has become increasingly prominent. API is a bridge for communication between different applications. It can realize data sharing, function calling and other operations, and provides developers with a relatively simple and fast development method. As an excellent PHP development framework, the ThinkPHP framework is efficient, scalable and easy to use.

See all articles