mirror of
https://gh.wpcy.net/https://github.com/netcccyun/easypanel.git
synced 2026-04-23 03:52:25 +08:00
30 lines
No EOL
407 B
PHP
30 lines
No EOL
407 B
PHP
<?php
|
|
class UserAPI extends API
|
|
{
|
|
/**
|
|
* 构造函数
|
|
**/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* 析构函数 **/
|
|
public function __destruct()
|
|
{
|
|
parent::__destruct();
|
|
}
|
|
|
|
public function& getUser($uid = 0)
|
|
{
|
|
}
|
|
|
|
public function insertUser($arr = array())
|
|
{
|
|
$ret = daocall('user', 'insertUser', array($arr));
|
|
return $ret;
|
|
}
|
|
}
|
|
|
|
?>
|