mirror of
https://e.coding.net/circlecloud/McAccount.git
synced 2024-11-17 00:58:57 +00:00
8 lines
206 B
PHP
8 lines
206 B
PHP
|
<?php
|
||
|
class server_status extends AmysqlController {
|
||
|
function getinfo() {
|
||
|
$info = $this -> _model('server_model') -> QueryMinecraft( $_REQUEST ['ip'], $_REQUEST ['port'] );
|
||
|
return $info;
|
||
|
}
|
||
|
}
|
||
|
?>
|