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


PHP CI_Xmlrpc類代碼示例

本文整理匯總了PHP中CI_Xmlrpc的典型用法代碼示例。如果您正苦於以下問題:PHP CI_Xmlrpc類的具體用法?PHP CI_Xmlrpc怎麽用?PHP CI_Xmlrpc使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: CI_Xmlrpcs

 function CI_Xmlrpcs($config = array())
 {
     parent::CI_Xmlrpc();
     $this->set_system_methods();
     if (isset($config['functions']) && is_array($config['functions'])) {
         $this->methods = $config['functions'];
     }
     log_message('debug', "XML-RPC Server Class Initialized");
 }
開發者ID:Calico90,項目名稱:codeigniter-version-scan,代碼行數:9,代碼來源:Xmlrpcs.php

示例2: XML_RPC_Values

 function XML_RPC_Values($val = -1, $type = '')
 {
     parent::CI_Xmlrpc();
     if ($val != -1 || $type != '') {
         $type = $type == '' ? 'string' : $type;
         if ($this->xmlrpcTypes[$type] == 1) {
             $this->addScalar($val, $type);
         } elseif ($this->xmlrpcTypes[$type] == 2) {
             $this->addArray($val);
         } elseif ($this->xmlrpcTypes[$type] == 3) {
             $this->addStruct($val);
         }
     }
 }
開發者ID:yunsite,項目名稱:easysns,代碼行數:14,代碼來源:Xmlrpc.php

示例3: __construct

 /**
  * Constructor
  */
 public function __construct($config = array())
 {
     parent::__construct();
     $this->set_system_methods();
     if (isset($config['functions']) && is_array($config['functions'])) {
         $this->methods = array_merge($this->methods, $config['functions']);
     }
     log_message('debug', "XML-RPC Server Class Initialized");
 }
開發者ID:CapstoneFleetIntelligience,項目名稱:Fleet,代碼行數:12,代碼來源:Xmlrpcs.php

示例4:

 /**
  * Constructor
  */
 function __construct($init = TRUE)
 {
     parent::__construct();
     if ($init != TRUE) {
         return;
     }
     // Make a local reference to the ExpressionEngine super object
     $this->EE =& get_instance();
     $this->EE_initialize();
 }
開發者ID:thomasvandoren,項目名稱:teentix-site,代碼行數:13,代碼來源:EE_Xmlrpc.php

示例5: __construct

 public function __construct($val = -1, $type = '')
 {
     parent::__construct();
     if ($val != -1 or $type != '') {
         $type = $type == '' ? 'string' : $type;
         if ($this->xmlrpcTypes[$type] == 1) {
             $this->addScalar($val, $type);
         } elseif ($this->xmlrpcTypes[$type] == 2) {
             $this->addArray($val);
         } elseif ($this->xmlrpcTypes[$type] == 3) {
             $this->addStruct($val);
         }
     }
 }
開發者ID:bobseven,項目名稱:document-management-system,代碼行數:14,代碼來源:Xmlrpc.php


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