php 常用验证类及正则
正则表达式在遇到新的时候将会不断更新
include "ValidateParameterConfig.php";
class Validation
{
private static function getRexp($rexp)
{
$_rexp = array (
'letter_number'=>'/^[0-9A-Za-z]+$/',//只有字母数字包括大小写
'account'=>'/^[0-9A-Za-z_]+$/',//只有字母数字下划线包括大小写
'ids'=>'/^[0-9]+(\,[0-9]+)*$/',//验证多个id以','分割的类型 例如'1,2,3,4,5'
'number'=>'/^[0-9]+$/',//只可以使数字
'personal_card'=>'/^[0-9A-Za-z]+$/',//身份证
'email'=>'/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/',//邮箱
'date'=>'/^((((19|20)\d{2})-(0?(1|[3-9])|1[012])-(0?[1-9]|[12]\d|30))|(((19|20)\d{2})-(0?[13578]|1[02])-31)|(((19|20)\d{2})-0?2-(0?[1-9]|1\d|2[0-8]))|((((19|20)([13579][26]|[2468][048]|0[48]))|(2000))-0?2-29))$/'//日期,包含了闰年
);
if (isset($_rexp[$rexp])) {
return $_rexp[$rexp];
} else {
return $rexp_not_defind;
}
}
public static function validate($data, $config)
{
$_config = ValidateParameterConfig::getConfig($config);
$k = self::allowExist($data, $_config);
if ($k !== null) {
return $k;
}
foreach($_config as $k=>$c) {
if (isset($data[$k]))
{
if(isset($c['rexp']))
{
if (self::vRexp( $data[$k], $c['rexp']) === false) {
return $k;
}
}
if (isset($c['length']))
{
if (self::vLength($data[$k], $c['length']))
{
return $k;
}
}
if (isset($c['min_length']))
{
if (!self::vMinLength($data[$k], $c['min_length']))
{
return $k;
}
}
if (isset($c['max_length']))
{
if (!self::vMaxLength($data[$k], $c['max_length']))
{
return $k;
}
}
}
}
return null;
}
private static function allowExist($data, $config)
{
foreach ($config as $k=>$v)
{
if (!isset($v['allow_exist']) || $v['allow_exist'] == true) {
if (!isset($data[$k]))
{
return $k;
}
}
}
return null;
}
public static function vRexp($data, $rexp) {
$_rexp = self::getRexp($rexp);
if (preg_match($_rexp, $data) == false) {
return false;
}
return true;
}
public static function vLength($data, $l) {
if (strlen(trim($data)) == $l) {
return false;
}
return true;
}
public static function vMinLength($data, $l) {
if (strlen(trim($data))
return false;
}
return true;
}
public static function vMaxLength($data, $l) {
if (strlen(trim($data)) > $l) {
return false;
}
return true;
}
public static function vLetterNumber($data) {
if (preg_match(self::getRexp('letter_number'), $data) == false) {
return false;
}
return true;
}
public static function vLetterNumber_($data) {
if (preg_match(self::getRexp('letter_number_'), $data) == false) {
return false;
}
return true;
}
public static function vNumber($data) {
if (preg_match(self::getRexp('number'), $data) == false) {
return false;
}
return true;
}
public static function vEmail($data) {
if (preg_match(self::getRexp('email'), $data) == false) {
return false;
}
return true;
}
class ValidateParameterConfig
{
public static function getConfig ($key)
{
//'allow_exist'=>true或allow_exist不存在表示该参数必传
$_config = array(
'test'=>array(
'letter_number'=>array('rexp'=>'letter_number', 'allow_exist'=>true),
'number'=>array('rexp'=>'number', 'min_length'=>1'allow_exist'=>false),
'account'=>array('rexp'=>'account', 'max_length'=>20),
)
);
if (isset($_config[$key])) {
return $_config[$key];
} else {
return $config_not_defind;
}
}
}
使用例子:
从应用端发过来的参数为
$arr = array('letter_number'=>'abc123', 'account'=>'acb1234_');
//参数验证
$_msg = Validation::validate($arr, 'test');
if ($_msg !== null) {
return $_msg . ' is invalid parameter';
}

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

VSCode Windows 64位 下载
微软推出的免费、功能强大的一款IDE编辑器

ZendStudio 13.5.1 Mac
功能强大的PHP集成开发环境