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


PHP Pi::com方法代碼示例

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


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

示例1: index

 public function index()
 {
     //$this->jump('/login',true);
     echo "<br>";
     echo "in index";
     echo "<br>";
     $xz = new Xcrypt();
     $num = rand(10000, 20000) . rand(10000, 20000) . rand(10000, 20000);
     $res = $xz->encode($num);
     echo $res;
     echo '<br>';
     $login = Pi::com('login');
     $res = $login->dologin(array('111' => 1241, 'hihu' => 1241));
     print_r($res);
     // $q = new Queue("hihu",'users',600);
     // $q->push(array("queue"=>'真的'));
     // $q->push(array("queue"=>'真的'));
     // $q->push(array("queue"=>'真的'));
     // var_dump($q->getSize());
     // var_dump($q->pop());
     // var_dump($q->pop());
     // var_dump($q->getSize());
     // var_dump($q->clear());
     // var_dump($q->pop());
 }
開發者ID:hihus,項目名稱:pi,代碼行數:25,代碼來源:IndexCtr.php

示例2: Server

 static function Server()
 {
     $mod = Comm::req('mod');
     $add = Comm::req('add');
     $method = Comm::req('method');
     $args = Comm::req('param', array());
     try {
         $class = Pi::com($mod, $add, true);
         if (is_callable(array($class, $method))) {
             $reflection = new ReflectionMethod($class, $method);
             $argnum = $reflection->getNumberOfParameters();
             if ($argnum > count($args)) {
                 self::output("inner api call the {$method} from {$mod} {$add} with err args", 5010);
             }
             //公共方法才允許被調用
             $res = $reflection->invokeArgs($class, $args);
             self::output($res);
         }
         self::output("inner api not callable the {$mod} {$add} from {$method} fail", 5009);
     } catch (Exception $e) {
         self::output("inner api execute the {$mod} {$add} from {$method} fail", 5008);
     }
 }
開發者ID:hihus,項目名稱:pi,代碼行數:23,代碼來源:Proxy.php

示例3: define

<?php

//酌情去掉的配置
define('TIMEZONE', 'Asia/Shanghai');
define("__PI_EN_DEBUG", 1);
//必要配置
define('PI_ROOT', dirname(__FILE__) . '/');
define('PI_COM_ROOT', PI_ROOT . 'com/');
include PI_ROOT . 'core/Pi.php';
$login = Pi::com('login');
$res = $login->dologin(array('111' => 1241, 'hihu' => 1241));
print_r($res);
開發者ID:hihus,項目名稱:pi,代碼行數:12,代碼來源:example.php


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