调试
hello(Debug::hello)
try {
$res = $client->api('debug')->hello();
print_r($res);
} catch (\Exception $e) {
http_response_code(500);
print_r($e);
return;
}time(Debug::time)
try {
$res = $client->api('debug')->time();
print_r($res);
} catch (\Exception $e) {
http_response_code(500);
print_r($e);
return;
}Last updated
Was this helpful?