1 Star 0 Fork 0

Near_Je/Regex

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Regex.php 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
十七号 提交于 2014-08-11 15:25 . init commit
<?php
/**
* @version 1.0
* @date 2014-08-11
* @author 十七号 <xialeistudio@gmail.com>
* @license MIT
* Class Regex 正则工具类(PHP > 5.2)
*/
class Regex
{
/**
* 是否为电话号码
* @param $phone
* @return bool
*/
public static function is_phone($phone)
{
return preg_match('/^(\+86)?1[3-8]\d{9}$/', $phone) > 0 ? true : false;
}
/**
* 是否邮编
* @param $code
* @return bool
*/
public static function is_postcode($code)
{
return preg_match('/^\d{6}$/', $code) > 0 ? true : false;
}
/**
* 检测邮箱
* @param $email
* @return bool
*/
public static function is_email($email)
{
$token = filter_var($email, FILTER_VALIDATE_EMAIL);
return empty($token) ? false : true;
}
/**
* 检测url
* @param $url
* @return bool
*/
public static function is_url($url)
{
$result = filter_var($url, FILTER_VALIDATE_URL);
return empty($result) ? false : true;
}
/**
* 检测UTF-8汉字
* @param $str
* @return bool
*/
public static function is_chinese($str)
{
return preg_match('/^[\x{4e00}-\x{9fa5}]+$/u', $str) > 0 ? true : false;
}
/**
* 是否IP
* @param $ip
* @return bool
*/
public static function is_ip($ip)
{
$result = filter_var($ip, FILTER_VALIDATE_IP);
return empty($result) ? false : true;
}
/**
* 验证用户名 第一位必须为字母
* @param $str
* @return bool
*/
public static function is_username($str)
{
return preg_match('/^[a-zA-Z]\w{5,19}$/i', $str) > 0 ? true : false;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/luoning_php/Regex.git
git@gitee.com:luoning_php/Regex.git
luoning_php
Regex
Regex
master

搜索帮助