欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

判断是否为指定长度内字符串的php函数_PHP教程

程序员文章站 2022-04-07 12:43:34
...
复制代码 代码如下:

//———————————————————————————–
// 函数名:CheckLengthBetween($C_char, $I_len1, $I_len2=100)
// 作 用:判断是否为指定长度内字符串
// 参 数:$C_char(待检测的字符串)
// $I_len1 (目标字符串长度的下限)
// $I_len2 (目标字符串长度的上限)
// 返回值:布尔值
// 备 注:无
//———————————————————————————–
function CheckLengthBetween($C_cahr, $I_len1, $I_len2=100)
{
$C_cahr = trim($C_cahr);
if (strlen($C_cahr) if (strlen($C_cahr) > $I_len2) return false;
return true;
}
//———————————————————————————–

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/321254.htmlTechArticle复制代码 代码如下: //———————————————————————————– // 函数名:CheckLengthBetween($C_char, $I_len1, $I_len2=100) /...