## 生成URL地址
web端超管后臺
>示例:/web/index.php?c=site&a=entry&do=web&m=jsu_php&s=index/index
```
urls('index/index');
```
web端后臺
>示例:/web/index.php?c=site&a=entry&do=addons&m=jsu_php&s=addons/web/index/index
```
addon_url('web/index/index');
```
mobile端超管后臺
>示例:/app/index.php?i=1&c=entry&do=mobile&m=jsu_php&s=addons/mobile/index/index
```
addon_url('web/index/index',[],'mobile');
```
## xml轉array
```
xmlToArray($xml);
```
## curl請求
>get請求
```
curl($url);
```
>post請求
```
curl($url,$data);
```
>post json請求
```
curl($url,$data,'json');
```
## 檢測web端是否已登陸
```
checklogin();
```
## 檢測mobile端是否已登陸
```
checkauth();
```