/**
* 创建数据库
* @param $db_name 数据库名称
* @return boolean true 成功, false 失败
*/
static public function createDB($db_name)
{
$res = self::isDBExist($db_name);
if (!$res) {
$create = Db::execute("CREATE DATABASE IF NOT EXISTS ".$db_name." DEFAULT CHARSET utf8 COLLATE utf8_general_ci");
if ($create === 1) {
return true;
}
return false;
}
return true;
}
智享笔记