「PHPの学習」Windows環境にMySQLバックアップ機能を実現するサンプルスクリプト

1.ファイル名
mysqlbackup.php
2.phpコード:

<?php

//mysqlをバックアップ
set_time_limit(0);
date_default_timezone_set('PRC’);

//設定
$configs = array(
'host1’=>array(
'localhost’,
'root’,
'startnews24_pwd’,
array('wei7’),
'D:/xampp/mysql/bin/mysqldump’, //バックアップツール
dirname(__FILE__)."/localhost", //ディレクトリ+ホスト名
5, //5日前のSQLファイルを削除
),);

foreach($configs as $config) {
$logsfile = $config[5].’/’.date('ymd’).’.log’;
logs($logsfile, $config[0]." backup\r\n");
backup($config);
}
  //バックアップ処理
function backup($config) {
list($host, $username, $password, $databases, $backuptool, $backupdir, $day) = $config;
$command = “$backuptool -u $username -h $host -p$password %s > %s";
$logsfile = $backupdir.’/’.date('ymd’).’.log’;
$backfilename = $backupdir.’/’.date('Ymd’)."%s.sql"; //バックアップされたSQLファイル
if(!is_dir($backupdir)) {
mkdir($backupdir, 0755 , true);
}

//10日間のバックアップファイルを削除
get_dir_files($backupdir, $returnval);
if($returnval) {
foreach($returnval as $v) {
$time = filemtime($v);
if($time < strtotime(“-$day day") && ((pathinfo($v,PATHINFO_EXTENSION)==’zip’ || pathinfo($v,PATHINFO_EXTENSION)==’sql’))) {
unlink($v);
}
}
}

if(!$databases) {
$databases = getdatabases($host, $username, $password);
}

//バックアップ開始
foreach($databases as $database) {
$outputfile = sprintf($backfilename, $database);
$execcommand = sprintf($command, $database, $outputfile);

try {
if(system($execcommand) === false) {
throw new Exception('execute backup command error!’);
}

//ファイルは大きすぎる時圧縮失敗
if(file_exists($outputfile)) {
$zip = new ZipArchive();
$filename = pathinfo($outputfile,PATHINFO_FILENAME);
$zipname = $backupdir.’/’.$filename.’.zip’; //zip文件的路径
if($zip->open($zipname, ZIPARCHIVE::OVERWRITE) === true) {
$zip->addFile($outputfile, $filename.’.’.pathinfo($outputfile,PATHINFO_EXTENSION));

$zip->close();
}else {
throw new Exception('ZipArchive open error!’);
}
}

if(!file_exists($zipname) || (filesize($zipname)==0)) {
throw new Exception('ZipArchive create error!’);
}

$message = date('Y-m-d H:i:s’)."$database backup complete!\r\n";
logs($logsfile, $message);
}catch(Exception $e) {
$message = date('Y-m-d H:i:s’).$e->getLine().’ '.$e->getMessage()."\r\n";
logs($logsfile, $message);
}

}
}
//データベースを取得
function getdatabases($host, $username, $password) {
$databases = array();

try {
$mysqli = new Mysqli($host, $username, $password);
$result = $mysqli->query(“show databases");
if($result) {
while($row = $result->fetch_row()) {
(current($row)!=’information_schema’ && current($row)!=’mysql’ && current($row)!=’performance_schema’) && $databases[] = current($row);
}
$result->free_result();
$mysqli->close();
}else {
throw new Exception('No databases!’);
}
}catch(Exception $e) {
$message = date('Y-m-d H:i:s’).$e->getLine().’ '.$e->getMessage()."\r\n";
logs($logsfile, $message);
}

return $databases;
}

function logs($file, $contents) {
$dirname = dirname($file);
if(!is_dir($dirname)) {
mkdir($dirname, 0755, true);
}elseif(is_writeable($dirname)) {
file_put_contents($file, $contents, FILE_APPEND);
}
}

//現在のディレクトリ内のファイルを取得(サブフォルダは含まれません)
function get_dir_files($currPath, &$returnVal=array()) {
if(is_dir($currPath)) {
$currPath = (substr($currPath,-1,1)==’/’)?substr($currPath,0,strlen($currPath)-1):$currPath;

if($handler = opendir($currPath)) {
while(($fileName = readdir($handler)) !== false) {
if($fileName != '.’ && $fileName != '..’ && $fileName[0] != '.’) {
if(is_file($currPath . '/’ . $fileName)) {
$returnVal[] = $currPath . '/’ . $fileName;
}
}
}
closedir($handler);
}
}
}
?>
3.mysqlbackup.bat:

D:\xampp\php\php.exe -q D:\wamp\www\php_lib\basic\mysqlbackup.php
pause;

Development

Posted by arkgame