game2005api/webapp/controller/OpsController.class.php
aozhiwei bfb5fe4bd1 1
2020-12-30 13:43:00 +08:00

19 lines
337 B
PHP

<?php
class OpsController {
private $gameid = 1009;
public function selfChecking()
{
echo json_encode(array(
'errcode' => 0,
'errmsg' => "gameid:{$this->gameid}",
'healthy' => 1,
'max_rundelay' => 1,
'time' => phpcommon\getNowTime()
));
}
}