当前位置: 首页>>代码示例>>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;未经允许,请勿转载。