博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
常用函数
阅读量:5921 次
发布时间:2019-06-19

本文共 2503 字,大约阅读时间需要 8 分钟。

$i; $j--){ if ($array[$j] < $array [$j-1]){ $tmp = $array[$j]; $array[$j] = $array[ $j-1]; $array [$j-1] = $tmp; } } } return $array; } //快速排序(数组排序) function quick_sort($array ) { if (count($array) <= 1) return $array; $key = $array [0]; $left_arr = array(); $right_arr = array(); for ($i= 1; $i
strlen($str )) return; if (($length!=NULL) && ( $start>0) && ($length> strlen($str)-$start)) return; if (( $length!=NULL) && ($start< 0) && ($length>strlen($str )+$start)) return; if ($length == NULL) $length = (strlen($str ) - $start); if ($start < 0){ for ($i=(strlen( $str)+$start); $i<(strlen ($str)+$start+$length ); $i++) { $substr .= $str[$i]; } } if ($length > 0){ for ($i= $start; $i<($start+$length ); $i++) { $substr .= $str[$i]; } } if ( $length < 0){ for ($i =$start; $i<(strlen( $str)+$length); $i++) { $substr .= $str[$i ]; } } return $substr; } //字符串翻转 function strrev($str) { if ($str == '') return 0 ; for ($i=(strlen($str)- 1); $i>=0; $i --){ $rev_str .= $str[$i ]; } return $rev_str; } //字符串比较 function strcmp($s1, $s2) { if (strlen($s1) < strlen($s2)) return -1 ; if (strlen($s1) > strlen( $s2)) return 1; for ($i =0; $i
128) return false; for( $i=0; $i
31 && $c <107) $c += 20 ; if ($c>106 && $c <127) $c -= 75 ; $word = chr($c ); $s .= $word; } return $s; } //简单解码函数(与php_encode函数对应) function php_decode($str) { if ( $str=='' && strlen($str )>128) return false; for( $i=0; $i
106 && $c<127 ) $c = $c-20; if ($c>31 && $c< 107) $c = $c+75 ; $word = chr( $c); $s .= $word ; } return $s; } //简单加密函数(与php_decrypt函数对应) function php_encrypt($str) { $encrypt_key = 'abcdefghijklmnopqrstuvwxyz1234567890'; $decrypt_key = 'ngzqtcobmuhelkpdawxfyivrsj2468021359'; if ( strlen($str) == 0) return false; for ($i=0; $i

 

转载于:https://www.cnblogs.com/yuwensong/archive/2013/05/06/3063049.html

你可能感兴趣的文章
北京医院排名(去哪个医院合适)
查看>>
使用zabbix监控TCP连接状态, Zabbix之监控虚拟主机EXSI
查看>>
Category 特性在 iOS 组件化中的应用与管控
查看>>
log4j.properties配置文件配置详解
查看>>
我的友情链接
查看>>
2011年8月21日在郑州的技术交流活动照片
查看>>
利用缓存来提高网站的性能(Caching to Improve the Performance of Your Website )
查看>>
Linux下C++访问MySQL
查看>>
Sqoop1和Sqoop2简介
查看>>
Go语言实例系列【 获取文件行数】
查看>>
Linux无线网络配置
查看>>
两台web服务器实现负载均衡的解决方案
查看>>
40.mkpasswd生成命令
查看>>
Eclipse安装Lua开发插件
查看>>
centos7 安装erlang
查看>>
网站降权的几种原因的分析
查看>>
disable guest account in Ubuntu
查看>>
netstat命令
查看>>
expect TCL编程解决shell交互问题
查看>>
pt-online-schema-change你今天滥用了吗?
查看>>