当前位置: 首页>>代码示例>>PHP>>正文


PHP IXR_Server::call方法代码示例

本文整理汇总了PHP中IXR_Server::call方法的典型用法代码示例。如果您正苦于以下问题:PHP IXR_Server::call方法的具体用法?PHP IXR_Server::call怎么用?PHP IXR_Server::call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IXR_Server的用法示例。


在下文中一共展示了IXR_Server::call方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: call

 function call($methodname, $args)
 {
     // Make sure it's in an array
     if ($args && !is_array($args)) {
         $args = array($args);
     }
     // Over-rides default call method, adds signature check
     if (!$this->hasMethod($methodname)) {
         return new IXR_Error(-32601, 'server error. requested method "' . $this->message->methodName . '" not specified.');
     }
     $method = $this->callbacks[$methodname];
     $signature = $this->signatures[$methodname];
     $returnType = array_shift($signature);
     // Check the number of arguments
     if (count($args) != count($signature)) {
         return new IXR_Error(-32602, 'server error. wrong number of method parameters');
     }
     // Check the argument types
     $ok = true;
     $argsbackup = $args;
     for ($i = 0, $j = count($args); $i < $j; $i++) {
         $arg = array_shift($args);
         $type = array_shift($signature);
         switch ($type) {
             case 'int':
             case 'i4':
                 if (is_array($arg) || !is_int($arg)) {
                     $ok = false;
                 }
                 break;
             case 'base64':
             case 'string':
                 if (!is_string($arg)) {
                     $ok = false;
                 }
                 break;
             case 'boolean':
                 if ($arg !== false && $arg !== true) {
                     $ok = false;
                 }
                 break;
             case 'float':
             case 'double':
                 if (!is_float($arg)) {
                     $ok = false;
                 }
                 break;
             case 'date':
             case 'dateTime.iso8601':
                 if (!is_a($arg, 'IXR_Date')) {
                     $ok = false;
                 }
                 break;
         }
         if (!$ok) {
             return new IXR_Error(-32602, 'server error. invalid method parameters');
         }
     }
     // It passed the test - run the "real" method call
     return parent::call($methodname, $argsbackup);
 }
开发者ID:vdanelia,项目名称:GeniXCMS,代码行数:61,代码来源:IXR_Library.php


注:本文中的IXR_Server::call方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。