mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-01 13:36:45 +08:00
20 lines
351 B
PHP
20 lines
351 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
class base_rpc_service_basic{
|
||
|
||
function ping($params, &$service){
|
||
return func_get_args();
|
||
}
|
||
|
||
function time(){
|
||
trigger_error('asdfasfsf',E_USER_ERROR);
|
||
return date(DATE_RFC822);
|
||
}
|
||
|
||
}
|