/**
 * 检测是否是时间戳
 */
public static function checkTimestamp($timestamp) {
    if(!is_int($timestamp)) {
        return false;
    }

    if(strtotime(date('Y-m-d H:i:s',$timestamp)) === $timestamp) {
        return true;
    } else {
        return false;
    }
}