本文整理匯總了PHP中dbstuff::halt方法的典型用法代碼示例。如果您正苦於以下問題:PHP dbstuff::halt方法的具體用法?PHP dbstuff::halt怎麽用?PHP dbstuff::halt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類dbstuff
的用法示例。
在下文中一共展示了dbstuff::halt方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: splitsql
if (is_file(BACKUP_DIR . $get['sqlpath'] . '/' . $next_dumpfile)) {
api_msg('bak_file_lose', $get['dumpfile']);
} else {
api_msg('import_success', 'import_success');
}
}
$sqldump = file_get_contents(BACKUP_DIR . $get['sqlpath'] . '/' . $get['dumpfile']);
$sqlquery = splitsql($sqldump);
unset($sqldump);
foreach ($sqlquery as $sql) {
//note 兼容SQL建表格式,調整為當前版本和字符集合適的建表語句
$sql = syntablestruct(trim($sql), $db->version() > '4.1', $dbcharset);
if ($sql != '') {
$db->query($sql, 'SILENT');
if (($sqlerror = $db->error()) && $db->errno() != 1062) {
$db->halt('MySQL Query Error', $sql);
}
}
}
$cur_file = $get['dumpfile'];
$get['dumpfile'] = $next_dumpfile;
auto_next($get, BACKUP_DIR . $get['sqlpath'] . '/' . $cur_file);
} elseif ($get['method'] == 'ping') {
//note 探測某個指定目錄下是否有備份數據
if ($get['dir'] && is_dir(BACKUP_DIR . $get['dir'])) {
echo "1";
exit;
} else {
echo "-1";
exit;
}