Home php教程 php手册 PHP备份MySQL和网站发送到邮箱

PHP备份MySQL和网站发送到邮箱

Jun 06, 2016 pm 07:46 PM
li mysql php backup website Enter Mail

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 使用PHP备份MySQL和网站发送到邮箱的方法。 代码: 1 #!/usr/local/bin/php.cli 2 ?php 3 require_once './lib/swift_required.php'; 4 //MySQL 5 $mysql_dbname = "db"; 6 $mysql_user = "user"; 7

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  使用PHP备份MySQL和网站发送到邮箱的方法。

  代码:

  1 #!/usr/local/bin/php.cli

  2

  3 require_once './lib/swift_required.php';

  4 //MySQL

  5 $mysql_dbname = "db";

  6 $mysql_user = "user";

  7 $mysql_pass = "pass";

  8 $mysql_file = "./xxx.sql";

  9 $mysql_charset = "utf8";

  10 system("mysqldump --default-character-set=$mysql_charset --opt -u$mysql_user -p$mysql_pass $mysql_dbname > $mysql_file");

  11 //Backup WWW File

  12 $www_path = "/www/";

  13 @$final_file = "./xxx_com_".date("Y_m_d")。".zip";

  14 system("zip -r -q $final_file $www_path $mysql_file");

  15 //E-Mail

  16 @$mail_title = "Backup for Coder4.com ".date("Y_m_d");

  17 $mail_sender = "xxx_send@vip.qq.com";

  18 $mail_recver = "xxx_recv@vip.qq.com";

  19 $mail_body = "See attachments";

  20 $mail_file = $final_file;

  21 $sendmail_cmd = "/usr/sbin/sendmail -bs";

  22 //Create E-Mail

  23 $message = Swift_Message::newInstance();

  24 $message->setSubject($mail_title);

  25 $message->setFrom(array($mail_sender));

  26 $message->setTo(array($mail_recver));

  27 $message->setBody($mail_body);

  28 $message->attach(Swift_Attachment::fromPath($mail_file));

  29 //echo $message->toString();

  30 //Send E-Mail

  31 $transport = Swift_SendmailTransport::newInstance($sendmail_cmd);

  32 $mailer = Swift_Mailer::newInstance($transport);

  33 $result = $mailer->send($message);

  34 //Delete

  35 unlink($final_file);

  36 unlink($mysql_file);

  37 //End

  38 echo "All backup success."

  39 ?>

PHP备份MySQL和网站发送到邮箱

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

gate.io registration tutorial gate.io registration tutorial Mar 31, 2025 pm 11:09 PM

This article provides a detailed Gate.io registration tutorial, covering every step from accessing the official website to completing registration, including filling in registration information, verifying, reading user agreements, etc. The article also emphasizes security measures after successful registration, such as setting up secondary verification and completing real-name authentication, and gives tips from beginners to help users safely start their digital asset trading journey.

The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? Apr 01, 2025 pm 03:03 PM

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

Ouyi official website registration portal 2025 Ouyi official website registration portal 2025 Mar 21, 2025 pm 06:00 PM

2025 Ouyi OKX Registration Entrance Guide: Plan ahead and trade safely! Digital currency transactions are changing rapidly, and it is crucial to understand the 2025 Ouyi registration entrance and process in advance. This article predicts that in the future registration may face stricter KYC/AML requirements, biometric technology applications, mobile-first strategies and global compliance adjustments. We will explain the key steps of secure registration in detail, including selecting official channels, setting strong passwords, enabling two-factor verification, protecting personal information, etc., to help you avoid risks, register an Ouyi OKX account safely and conveniently, and start a digital asset trading journey.

In Laravel, how to deal with the situation where verification codes are failed to be sent by email? In Laravel, how to deal with the situation where verification codes are failed to be sent by email? Mar 31, 2025 pm 11:48 PM

The method of handling Laravel's email failure to send verification code is to use Laravel...

gate.io latest registration tutorial for beginners gate.io latest registration tutorial for beginners Mar 31, 2025 pm 11:12 PM

This article provides newbies with detailed Gate.io registration tutorials, guiding them to gradually complete the registration process, including accessing the official website, filling in information, identity verification, etc., and emphasizes the security settings after registration. In addition, the article also mentioned other exchanges such as Binance, Ouyi and Sesame Open Door. It is recommended that novices choose the right platform according to their own needs, and remind readers that digital asset investment is risky and should invest rationally.

The latest registration tutorial for gate.io web version The latest registration tutorial for gate.io web version Mar 31, 2025 pm 11:15 PM

This article provides a detailed Gate.io web version latest registration tutorial to help users easily get started with digital asset trading. The tutorial covers every step from accessing the official website to completing registration, and emphasizes security settings after registration. The article also briefly introduces other trading platforms such as Binance, Ouyi and Sesame Open Door. It is recommended that users choose the right platform according to their own needs and pay attention to investment risks.

How to get the return code when email sending fails in Laravel? How to get the return code when email sending fails in Laravel? Apr 01, 2025 pm 02:45 PM

Method for obtaining the return code when Laravel email sending fails. When using Laravel to develop applications, you often encounter situations where you need to send verification codes. And in reality...

Tutorial on using gate.io mobile app Tutorial on using gate.io mobile app Mar 26, 2025 pm 05:15 PM

Tutorial on using gate.io mobile app: 1. For Android users, visit the official Gate.io website and download the Android installation package, you may need to allow the installation of applications from unknown sources in your mobile phone settings; 2. For iOS users, search "Gate.io" in the App Store to download.

See all articles