123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace Think\Controller;
- class JsonRpcController {
-
- public function __construct() {
-
- if(method_exists($this,'_initialize'))
- $this->_initialize();
-
- Vendor('jsonRPC.jsonRPCServer');
-
- \jsonRPCServer::handle($this);
- }
-
- public function __call($method,$args){}
- }
|