程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP網站實例分析

PHP網站實例分析

編輯:關於PHP編程

<?php
if(version_compare(PHP_VERSION,5.0.0,<) ) { //版本小於5.0.0
   die(ThinkPHP 1.* require_once PHP > 5.0 !); //提示並終止
}
//記錄開始運行時間 bkJia注釋
$GLOBALS[_beginTime] = microtime(TRUE);

//全局變量 TRUE表示秒與微秒相加

 

// ThinkPHP系統目錄定義
if(!defined(THINK_PATH)) define(THINK_PATH, dirname(__FILE__));

//THINK_PATH的值是:d:www_4000Think_path

 

//dirname(dirname(__FILE__));得到的是文件上一層目錄名
//dirname(__FILE__);得到的是文件所在層目錄名

 

if(!defined(APP_NAME)) define(APP_NAME, md5(THINK_PATH));
//如果沒有常量APP_NAME 將應用程序名加密 (bkJia中文網)

 

if(!defined(APP_PATH)) define(APP_PATH, dirname(THINK_PATH)./.APP_NAME);


if(!defined(RUNTIME_PATH)) define(RUNTIME_PATH,APP_PATH./Temp/);

//運行時路經

 

if(file_exists(RUNTIME_PATH.~runtime.php)) {
   // 運行時路徑中有此文件,加載框架核心緩存文件
   // 如果有修改核心文件請刪除該緩存(bkJia.com)
   require_once RUNTIME_PATH.~runtime.php;
}else{
   // 加載系統定義文件
   require_once THINK_PATH."/Common/defines.php";
   // 系統函數庫
   require_once THINK_PATH."/Common/functions.php";
   // 加載編譯需要的函數文件
   require_once THINK_PATH."/Common/runtime.php";
   // 第一次運行檢查項目目錄結構 如果不存在則自動創建
   if(!file_exists(RUNTIME_PATH)) {
       // 創建項目目錄結構
       buildAppDir();
   }

   //加載ThinkPHP基類
   import("Think.Core.Base");


   //加載異常處理類
   import("Think.Exception.ThinkException");


   // 加載日志類
   import("Think.Util.Log");


   //加載Think核心類
   import("Think.Core.App");


   import("Think.Core.Action");


   import("Think.Core.Model");


   import("Think.Core.View");


   // 是否生成核心緩存
   $cache =  ( !defined(CACHE_RUNTIME) || CACHE_RUNTIME == true );
   if($cache) {
       if(defined(STRIP_RUNTIME_SPACE) && STRIP_RUNTIME_SPACE == false ) {
           $fun   =  file_get_contents;
       }else{
           $fun   =  php_strip_whitespace;
       }
       // 生成核心文件的緩存 去掉文件空白以減少大小
       $content    =  $fun(THINK_PATH./Common/defines.php);
       $content   .=  $fun(THINK_PATH./Common/functions.php);
       $content   .=  $fun(THINK_PATH./Lib/Think/Core/Base.class.php);
       $content   .=  $fun(THINK_PATH./Lib/Think/Exception/ThinkException.class.php);
       $content   .=  $fun(THINK_PATH./Lib/Think/Util/Log.class.php);
       $content   .=  $fun(THINK_PATH./Lib/Think/Core/App.class.php);
       $content   .=  $fun(THINK_PATH./Lib/Think/Core/Action.class.php);
       $content   .=  $fun(THINK_PATH./Lib/Think/Core/Model.class.php);
       $content   .=  $fun(THINK_PATH./Lib/Think/Core/View.class.php);
   }
   if(version_compare(PHP_VERSION,5.2.0,<) ) {
       // 加載兼容函數
       require_once THINK_PATH./Common/compat.php;
       if($cache) {
           $content .= $fun(THINK_PATH./Common/compat.php);
       }
   }
   if($cache) {
       file_put_contents(RUNTIME_PATH.~runtime.php,$content);//將字符串寫入文件
       unset($content);//銷毀$content
   }
}
// 記錄加載文件時間
$GLOBALS[_loadTime] = microtime(TRUE);
?>

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved