1234567891011121314151617181920 |
- <?php
- namespace KIF\Math;
- /**
- *
- * 这个类用于管理数学相关的方法
- * @author gaoxiaogang@gmail.com
- *
- */
- class Math {
-
- /**
- * 计算一个字符串的 16位 md5值
- * @param string $str
- * @return string 16位的字符串
- */
- static public function md5_16($str) {
- return substr(md5($str), 8, 16);
- }
- }
|