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


PHP eZINI::Instance方法代碼示例

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


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

示例1: methodHelp

 /**
  * Returns a help text descibing a given webservice.
  * The help text is generated via introspection from phpdoc comments on the source code.
  * Note that it takes 2 params insted of 1 as this helps clients sending requests:
  * it is hard for ezjscore to send a string param containing two colons in a row...
  * @param string className
  * @param string methodName
  * @return string
  */
 static function methodHelp($params)
 {
     // we can not use ezjscServerRouter::getInstance() to see if method exists,
     // because it checks permissions!
     if (count($params) != 2) {
         throw new Exception(ggWebservicesServer::INVALIDPARAMSERROR . ' ' . ggWebservicesServer::INVALIDPARAMSSTRING);
     }
     $className = array_shift($params);
     $functionName = array_shift($params);
     $ini = eZINI::Instance('ezjscore.ini');
     if ($ini->hasGroup('ezjscServer_' . $className)) {
         if ($ini->hasVariable('ezjscServer_' . $className, 'File')) {
             include_once $ini->variable('ezjscServer_' . $className, 'File');
         }
         if ($ini->hasVariable('ezjscServer_' . $className, 'TemplateFunction')) {
             if ($ini->variable('ezjscServer_' . $className, 'TemplateFunction') === 'true') {
                 return 'No description can be given: method implemented via a template';
             }
         }
         if ($ini->hasVariable('ezjscServer_' . $className, 'Class')) {
             $realclassname = $ini->variable('ezjscServer_' . $className, 'Class');
         } else {
             $realclassname = $className;
         }
         if (class_exists($realclassname)) {
             $reflectionClass = new ReflectionClass($realclassname);
             $reflectionMethod = $reflectionClass->getMethod($functionName);
             if (is_object($reflectionMethod) && $reflectionMethod->isStatic()) {
                 $doc = $reflectionMethod->getDocComment();
                 // Clean up a bit the phpdoc format
                 $doc = preg_replace('#^(/\\*?)#', '', $doc);
                 // opening comment
                 $doc = preg_replace('#(\\*/)$#', '', $doc);
                 // end comment
                 $doc = preg_replace('#^( *\\*)#m', '', $doc);
                 // star on begin of line
                 $doc = preg_replace('#(\\* *)$#m', '', $doc);
                 // star on end of line
                 return $doc;
             }
         } else {
             /// @todo log config error
         }
     }
     throw new Exception(ggWebservicesServer::INVALIDINTROSPECTIONERROR . ' ' . ggWebservicesServer::INVALIDINTROSPECTIONSTRING);
 }
開發者ID:gggeek,項目名稱:ggwebservices,代碼行數:55,代碼來源:ggwebservicesjscfunctions.php


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