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


PHP XWB_plugin::_chkPath方法代碼示例

本文整理匯總了PHP中XWB_plugin::_chkPath方法的典型用法代碼示例。如果您正苦於以下問題:PHP XWB_plugin::_chkPath方法的具體用法?PHP XWB_plugin::_chkPath怎麽用?PHP XWB_plugin::_chkPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XWB_plugin的用法示例。


在下文中一共展示了XWB_plugin::_chkPath方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: load

 function load($A, $P, $T, $F)
 {
     $switch = XWB_plugin::pCfg('switch_to_xweibo');
     list(, $method) = explode('.', $A);
     if (!$switch && !in_array($method, $this->whileList)) {
         $this->_ERHelper('4010005', TRUE, 'load');
     }
     $this->_validate($A, $P, $T, $F);
     //檢測驗證
     ///處理參數集
     $PJDecode = ($tmp = xwb_util_json::decode($P, TRUE)) && is_array($tmp) ? $tmp : array();
     if ('null' != strtolower($P) && !$PJDecode) {
         $this->_ERHelper('4030001', TRUE, 'load');
     }
     if (!XWB_plugin::_chkPath($A)) {
         $this->_ERHelper('4010001', TRUE, 'load');
     }
     ///分析路由
     $Route = XWB_plugin::_parseRoute($A);
     if (XWB_R_DEF_MOD_FUNC == $Route[3] || '_' == substr($Route[3], 0, 1)) {
         $this->_ERHelper('4010001', TRUE, 'load');
     }
     ///構建API文件路徑
     $FilePath = XWB_P_ROOT . DIRECTORY_SEPARATOR . "xplugin_apis" . DIRECTORY_SEPARATOR . $Route[1] . $Route[2] . '.xapi.php';
     if (!file_exists($FilePath)) {
         $this->_ERHelper('4010002', TRUE, 'load');
     }
     ///引用API文件
     require_once $FilePath;
     if (!class_exists($Route[2])) {
         $this->_ERHelper('4010002', TRUE, 'load');
     }
     ///初始化API類
     $apiHandler = new $Route[2]();
     if (!is_object($apiHandler) || !method_exists($apiHandler, $Route[3])) {
         $this->_ERHelper('4010002', TRUE, 'load');
     }
     ///調用API方法
     $RT = call_user_func_array(array($apiHandler, $Route[3]), $PJDecode);
     return $RT;
 }
開發者ID:Jaedeok-seol,項目名稱:discuz_template,代碼行數:41,代碼來源:apiLoader.php

示例2: _getIncFile

 /**
  * 獲取符合框架目錄的一個文件的路徑
  * @param string $fRoute 文件名
  * @param string $type 類型,可選:cls, mod, func, hack
  * @return sring 文件路徑
  */
 function _getIncFile($fRoute, $type = 'cls')
 {
     static $fileMap = array();
     $fileId = (string) $fRoute . (string) $type;
     if (isset($fileMap[$fileId])) {
         return $fileMap[$fileId];
     }
     if (!XWB_plugin::_chkPath($fRoute)) {
         trigger_error("file route: [ {$fRoute}  - {$type}  ] is  invalid ", E_USER_ERROR);
     }
     $m = XWB_plugin::_parseRoute($fRoute);
     $fp = $m[1] . $m[2];
     $type = strtolower($type);
     $f = array('cls' => XWB_P_ROOT . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . $fp . '.class.php', 'mod' => XWB_P_ROOT . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . $fp . '.mod.php', 'func' => XWB_P_ROOT . DIRECTORY_SEPARATOR . "lib" . DIRECTORY_SEPARATOR . $fp . '.function.php', 'hack' => XWB_P_ROOT . DIRECTORY_SEPARATOR . "hack" . DIRECTORY_SEPARATOR . $fp . '.hack.php');
     if (!isset($f[$type])) {
         trigger_error("file type: [ {$type}  ] is  invalid ", E_USER_ERROR);
     }
     if (!file_exists($f[$type])) {
         trigger_error("file:[ " . $f[$type] . " ] not exists  ", E_USER_ERROR);
     }
     $fileMap[$fileId] = $f[$type];
     return $f[$type];
 }
開發者ID:chibimiku,項目名稱:xweibo_for_discuz_x2_php7,代碼行數:29,代碼來源:core.class.php


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