復制代碼 代碼如下:
//———————————————————————————–
// 函數名: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) < $I_len1) return false;
if (strlen($C_cahr) > $I_len2) return false;
return true;
}
//———————————————————————————–