Math.class.php 347 B

1234567891011121314151617181920
  1. <?php
  2. namespace KIF\Math;
  3. /**
  4. *
  5. * 这个类用于管理数学相关的方法
  6. * @author gaoxiaogang@gmail.com
  7. *
  8. */
  9. class Math {
  10. /**
  11. * 计算一个字符串的 16位 md5值
  12. * @param string $str
  13. * @return string 16位的字符串
  14. */
  15. static public function md5_16($str) {
  16. return substr(md5($str), 8, 16);
  17. }
  18. }