chengkun
2025-05-28 4be2904f3688c07e0e9793414bda33ae1f85f565
app/include/public.function.php
@@ -16,6 +16,11 @@
    }
}
/**
 * @desc 检测用户名格式
 * @param $str
 * @return bool
 */
function CheckRegUser($str) {
    if (!preg_match("/^[\x{4e00}-\x{9fa5}A-Za-z0-9\-@#.\$_!]+$/u", $str)) {
        return FALSE;
@@ -24,6 +29,11 @@
    }
}
/**
 * 检测电话号码
 * @param $str
 * @return bool
 */
function CheckTell($str) {
    if (preg_match("/^[0-9-]+?$/", $str) == 0) {
        return FALSE;
@@ -1545,12 +1555,7 @@
 */
function avgToYm($long) {
    if ($long >= 12) {
        if (bcmod($long, 12) > 0) {
            $return = floor($long / 12) . '年' . bcmod($long, 12);
        } else {
            $return = floor($long / 12) . '年';
        }
        $return = floor($long / 12) . '年';
    } else {
        $return = $long;
    }