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

一个判断是否为指定长度内字符串的函数

程序员文章站 2024-04-03 11:02:22
...
  1. //

  2. // 函数名:CheckLengthBetween($C_char, $I_len1, $I_len2=100)
  3. // 作 用:判断是否为指定长度内字符串
  4. // 参 数:$C_char(待检测的字符串)
  5. // $I_len1 (目标字符串长度的下限)
  6. // $I_len2 (目标字符串长度的上限)
  7. // 返回值:布尔值
  8. // 备 注:无
  9. function CheckLengthBetween($C_cahr, $I_len1, $I_len2=100)

  10. {
  11. $C_cahr = trim($C_cahr);
  12. if (strlen($C_cahr) if (strlen($C_cahr) > $I_len2) return false;
  13. return true;
  14. }
  15. ?>
复制代码