Verify.php
399 字节
<?php
namespace Lib;
/**
 * 验证
 * @author:dc
 * @time 2023/3/10 16:03
 * Class Verify
 * @package Lib
 */
class Verify {
    /**
     * 验证邮箱
     * @param $email
     * @return false|int
     * @author:dc
     * @time 2023/3/10 16:04
     */
    public static function email($email){
        return preg_match('/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/',$email);
    }
}