本文整理汇总了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);