本文整理匯總了PHP中CGlobal::my_server方法的典型用法代碼示例。如果您正苦於以下問題:PHP CGlobal::my_server方法的具體用法?PHP CGlobal::my_server怎麽用?PHP CGlobal::my_server使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CGlobal
的用法示例。
在下文中一共展示了CGlobal::my_server方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
<?php
//TuấnNK add (20090619_10h):
//Xử lý cập nhật lại tỉnh thành phố:
require_once 'core/Debug.php';
//System Debug...
require_once 'core/config.php';
//System Config...
require_once ROOT_PATH . 'core/CGlobal.php';
require_once ROOT_PATH . 'core/DB.php';
//Khởi tạo các biến hệ thống:
global $server_list;
CGlobal::$my_server = $server_list;
unset($server_list);
if (MEMCACHE_ON) {
require_once ROOT_PATH . 'core/AZMemcache.php';
}
require_once ROOT_PATH . 'core/AZLib.php';
require_once ROOT_PATH . 'core/AZArrCache.php';
require_once ROOT_PATH . 'core/System.php';
require_once ROOT_PATH . 'core/Url.php';
// Disable ALL magic_quote
set_magic_quotes_runtime(0);
register_shutdown_function(array("DB", "close"));
$js_file = ROOT_PATH . "javascript/enbac/cities.js";
AZLib::getProvinces();
echo "<pre>";
print_r(CGlobal::$provinces);
echo "</pre>";
$cities = array();
if (CGlobal::$provinces) {