A function that determines whether it is a string within a specified length

WBOY
Release: 2016-07-25 09:07:14
Original
952 people have browsed it
  1. //

  2. // Function name: CheckLengthBetween($C_char, $I_len1, $I_len2=100)
  3. // Function: Determine whether it is a string within the specified length
  4. // Parameters: $C_char (string to be detected)
  5. // $I_len1 (lower limit of target string length)
  6. // $I_len2 (upper limit of target string length)
  7. // Return value: Boolean value
  8. // Remarks: None I_len1) return false;
  9. if (strlen($C_cahr) > $I_len2) return false;
  10. return true;
  11. }
  12. ?>

  13. Copy code
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template