當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Vars::init方法代碼示例

本文整理匯總了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();
     }
 }
開發者ID:kaz6120,項目名稱:BitWiki,代碼行數:31,代碼來源:BitWiki.php

示例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();
     }
 }
開發者ID:riaf,項目名稱:kinowiki,代碼行數:31,代碼來源:kinowiki.inc.php


注:本文中的Vars::init方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。