```
//加载common类
$this->lib("Common");
/**
* 判断是空或者null
* @date: 2018年11月27日 下午11:26:56
* @author: 龚华尧
* @param: variable
* @return:
*/
$this->common->isEmpty($val)
/*
* -----------------------------------------------------------
* 函数名称:isNumber
* 简要描述:检查输入的是否为数字
* 输入:string
* 输出:boolean
* 修改日志:------
* -----------------------------------------------------------
*/
$this->common->isNumber($val)
```