本文整理匯總了PHP中cls_mysql::getCol方法的典型用法代碼示例。如果您正苦於以下問題:PHP cls_mysql::getCol方法的具體用法?PHP cls_mysql::getCol怎麽用?PHP cls_mysql::getCol使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cls_mysql
的用法示例。
在下文中一共展示了cls_mysql::getCol方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: JSON
check_authz_json('all');
/* 取得參數 */
include_once ROOT_PATH . 'includes/cls_json.php';
$json = new JSON();
$config = $json->decode($_POST['JSON']);
/* 測試連接數據庫 */
$sdb = new cls_mysql($config->host, $config->user, $config->pass, $config->db);
/* 檢查必需的表是否存在 */
$sprefix = $config->prefix;
$config->path = rtrim(str_replace('\\', '/', $config->path), '/');
// 把斜線替換為反斜線,去掉結尾的反斜線
include_once ROOT_PATH . 'includes/modules/convert/' . $config->code . '.php';
$convert = new $config->code($sdb, $sprefix, $config->path);
$required_table_list = $convert->required_tables();
$sql = "SHOW TABLES";
$table_list = $sdb->getCol($sql);
$diff_arr = array_diff($required_table_list, $table_list);
if ($diff_arr) {
make_json_error(sprintf($_LANG['table_error'], join(',', $table_list)));
}
/* 檢查源目錄是否存在,是否可讀 */
$dir_list = $convert->required_dirs();
foreach ($dir_list as $dir) {
$cur_dir = $config->path . $dir;
if (!file_exists($cur_dir) || !is_dir($cur_dir)) {
make_json_error(sprintf($_LANG['dir_error'], $cur_dir));
}
if (file_mode_info($cur_dir) & 1 != 1) {
make_json_error(sprintf($_LANG['dir_not_readable'], $cur_dir));
}
$res = check_files_readable($cur_dir);