>  기사  >  백엔드 개발  >  PHP 단일 문자 대소문자 변환 클래스

PHP 단일 문자 대소문자 변환 클래스

WBOY
WBOY원래의
2016-07-25 09:06:32955검색
基本操作
  1. /*
  2. *
  3. * @class Base_Char
  4. * @author zhangys
  5. * @date 2012/06/25
  6. */
  7. class Base_Var_Char
  8. {
  9. public static function isUpper ( $char )
  10. {
  11. $ascii = ord ( $char );
  12. if( $ascii > 64 and $ascii < 91 ) return true;
  13. return false;
  14. }
  15. public static function isLower ( $char )
  16. {
  17. $ascii = ord ( $char );
  18. if( $ascii > 96 and $ascii < 123 ) return true;
  19. return false;
  20. }
  21. public static function toUpper ( $char )
  22. {
  23. if ( self::isUpper ( $char ) ) return $char;
  24. $ascii = ord ( $char );
  25. return chr ( $ascii - 32 );
  26. }
  27. public static function toLower ( $char )
  28. {
  29. if ( self::isLower ( $char ) ) return $char;
  30. $ascii = ord ( $char );
  31. return chr ( $ascii 32 );
  32. }
  33. }
复制代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.