本文整理汇总了PHP中Sql::auto_connect方法的典型用法代码示例。如果您正苦于以下问题:PHP Sql::auto_connect方法的具体用法?PHP Sql::auto_connect怎么用?PHP Sql::auto_connect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sql
的用法示例。
在下文中一共展示了Sql::auto_connect方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: load_db_connection
function load_db_connection()
{
global $Sql, $Errorh;
import('core/errors');
$Errorh = new Errors();
import('db/mysql');
$Sql = new Sql();
$Sql->auto_connect();
}
示例2: Errors
require_once PATH_TO_ROOT . '/kernel/constant.php';
require_once PATH_TO_ROOT . '/kernel/framework/functions.inc.php';
import('core/errors');
import('io/template');
import('db/mysql');
import('core/cache');
import('members/session');
import('members/user');
import('members/groups');
import('members/authorizations');
import('core/breadcrumb');
import('content/parser/content_formatting_factory');
$Errorh = new Errors();
$Template = new Template();
$Sql = new Sql();
$Sql->auto_connect();
$Cache = new Cache();
$Bread_crumb = new BreadCrumb();
$CONFIG = array();
$Cache->load('config');
$Cache->load('groups');
$Cache->load('member');
$Cache->load('modules');
$Cache->load('themes');
$Cache->load('langs');
define('DIR', $CONFIG['server_path']);
define('HOST', $CONFIG['server_name']);
define('TPL_PATH_TO_ROOT', !empty($CONFIG['server_path']) ? $CONFIG['server_path'] : '');
$Session = new Session();
if ($CONFIG['ob_gzhandler'] == 1) {
ob_start('ob_gzhandler');