本文整理匯總了PHP中Vars::init方法的典型用法代碼示例。如果您正苦於以下問題:PHP Vars::init方法的具體用法?PHP Vars::init怎麽用?PHP Vars::init使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Vars
的用法示例。
在下文中一共展示了Vars::init方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: init
/**
* Initialize objects except BitWiki class
*/
static function init()
{
// set internal encodings.
mb_internal_encoding('UTF-8');
mb_regex_encoding('UTF-8');
// set SCRIPTURL
if ($_SERVER['SERVER_PORT'] == 443) {
$protocol = 'https';
$port = '';
} else {
$protocol = 'http';
$port = $_SERVER['SERVER_PORT'] != 80 ? ":{$_SERVER['SERVER_PORT']}" : '';
}
define('SCRIPTDIR', $protocol . '://' . $_SERVER['SERVER_NAME'] . $port . mb_substr($_SERVER['SCRIPT_NAME'], 0, mb_strrpos($_SERVER['SCRIPT_NAME'], '/') + 1));
define('SCRIPTURL', $protocol . '://' . $_SERVER['SERVER_NAME'] . $port . $_SERVER['SCRIPT_NAME']);
// check if table is already prepared and create when not exists.
$isinstalled = self::installcheck();
// insntaciate classes
Vars::init();
AutoLink::init();
BackLink::init();
FuzzyLink::init();
Mail::init();
// install initialize page when table is not prepared.
if (!$isinstalled) {
self::installpage();
}
}
示例2: init
/**
* KinoWikiクラスのインスタンスとは関係のないものの初期化。
*/
static function init()
{
//內部エンコードの設定
mb_internal_encoding('UTF-8');
mb_regex_encoding('UTF-8');
//SCRIPTURLの設定
if ($_SERVER['SERVER_PORT'] == 443) {
$protocol = 'https';
$port = '';
} else {
$protocol = 'http';
$port = $_SERVER['SERVER_PORT'] != 80 ? ":{$_SERVER['SERVER_PORT']}" : '';
}
define('SCRIPTDIR', $protocol . '://' . $_SERVER['SERVER_NAME'] . $port . mb_substr($_SERVER['SCRIPT_NAME'], 0, mb_strrpos($_SERVER['SCRIPT_NAME'], '/') + 1));
define('SCRIPTURL', $protocol . '://' . $_SERVER['SERVER_NAME'] . $port . $_SERVER['SCRIPT_NAME']);
//テーブルが用意されているかチェックし、用意されていなければ用意する。
$isinstalled = self::installcheck();
//各クラスの初期化
Vars::init();
AutoLink::init();
BackLink::init();
FuzzyLink::init();
Mail::init();
//テーブルが用意されていなかった場合、初期ページを書き込む
if (!$isinstalled) {
self::installpage();
}
}