本文整理汇总了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);
}