game2006api/webapp/controller/ServerSwitchController.class.php
aozhiwei f882b8718d 1
2022-06-07 18:51:41 +08:00

17 lines
327 B
PHP

<?php
class ServerSwitchController extends BaseAuthedController {
public function getSwitch()
{
$openList = array();
if (myself()->_getNowTime() > 1654704480) {
array_push($openList, 1);
}
myself()->_rspData(array(
'open_list' => $openList
));
}
}