在官方的說明文件裡面已經提到,若 driver 是 mysqli ($db[‘default’][‘dbdriver’] = ‘mysqli’),將無法使用備份的功能 $backup =& $this->dbutil->backup() ,還好有網友提供修正了(https://github.com/ci-bonfire/Bonfire/issues/1088),只要將下列語法取代原本的函數即可。
/**
* MySQLi Export
*
* @access private
* @param array Preferences
* @return mixed
*/
function _backup($params = array())
{
/*
// Currently unsupported
return $this->db->display_error('db_unsuported_feature');
*/
if (count($params) == 0) {
return FALSE;
}
// Extract the prefs for simplicity
extract($params);
// Build the output
$output = '';
foreach ((array)$tables as $table) {
// Is the table in the "ignore" list?
if (in_array($table, (array)$ignore, TRUE)) {
continue;
}
// Get the table schema
$query = $this->db->query("SHOW CREATE TABLE ".$this->db->database.'.'.$table.'');
// No result means the table name was invalid
if ($query === FALSE) {
continue;
}
// Write out the table schema
$output .= '#'.$newline.'# TABLE STRUCTURE FOR: '.$table.$newline.'#'.$newline.$newline;
if ($add_drop == TRUE) {
$output .= 'DROP TABLE IF EXISTS '.$table.';'.$newline.$newline;
}
$i = 0;
$result = $query->result_array();
foreach ($result[0] as $val) {
if ($i++ % 2) {
$output .= $val.';'.$newline.$newline;
}
}
// If inserts are not needed we're done...
if ($add_insert == FALSE) {
continue;
}
// Grab all the data from the current table
$query = $this->db->query("SELECT * FROM $table");
if ($query->num_rows() == 0) {
continue;
}
// Fetch the field names.
// We are going to surround all values with single quotes
// and hope that mysql would be able to make type conversion...
$field_str = '';
foreach ($query->row() as $field_name => $field_value) {
$field_str .= ''.$field_name.', ';
}
// Trim off the end comma
$field_str = preg_replace( "/, $/" , "" , $field_str);
// Build the insert string
foreach ($query->result_array() as $row) {
$val_str = '';
$i = 0;
foreach ($row as $v) {
// Is the value NULL?
if ($v === NULL) {
$val_str .= 'NULL';
} else {
$val_str .= $this->db->escape($v);
}
// Append a comma
$val_str .= ', ';
$i++;
}
// Remove the comma at the end of the string
$val_str = preg_replace( "/, $/" , "" , $val_str);
// Build the INSERT string
$output .= 'INSERT INTO '.$table.' ('.$field_str.') VALUES ('.$val_str.');'.$newline;
}
$output .= $newline.$newline;
}
return $output;
}
你或許會想要看:
- 在 mac 上安裝 xampp 使用者,OS X 升級到 Yosemite 出現 mysql 2002 錯誤
- VPS 主機,在Centos7上安裝 Linux+Nginx+MySQL+PHP 環境安裝
- DigitalOcean 主機,安裝 HHVM、Nginx、Mysql 在 Ubuntu 14.04 上
- 單一個wordpress網站使用多個網址
- Mysql 查詢字串分割方式(Split)
- [CodeIgniter] 錯誤訊息 Undefined index: REMOTE_ADDR
- [wordpress] 製作像 bootstrap 樣式的導航條、工具列
- [wordpress] register_taxonomy 自定新的分類
- [CodeIgniter] 取得 mysql 欄位資訊的編碼(Collation)、權限(Privileges)、註解(Comment)的欄位
- [PHP] 將 pdf 多頁轉換成合併成單一圖檔(jpg,png)