自己项目中PHP常用工具类大全分享,php工具类大全分享_PHP教程
程序员文章站
2024-01-01 11:08:46
...
自己项目中PHP常用工具类大全分享,php工具类大全分享
Php代码- /**
- * 助手类
- * @author www.shouce.ren
- *
- */
- class Helper
- {
- /**
- * 判断当前服务器系统
- * @return string
- */
- public static function getOS(){
- if(PATH_SEPARATOR == ':'){
- return 'Linux';
- }else{
- return 'Windows';
- }
- }
- /**
- * 当前微妙数
- * @return number
- */
- public static function microtime_float() {
- list ( $usec, $sec ) = explode ( " ", microtime () );
- return (( float ) $usec + ( float ) $sec);
- }
- /**
- * 切割utf-8格式的字符串(一个汉字或者字符占一个字节)
- *
- * @author zhao jinhan
- * @version v1.0.0
- *
- */
- public static function truncate_utf8_string($string, $length, $etc = '...') {
- $result = '';
- $string = html_entity_decode ( trim ( strip_tags ( $string ) ), ENT_QUOTES, 'UTF-8' );
- $strlen = strlen ( $string );
- for($i = 0; (($i $strlen) && ($length > 0)); $i ++) {