码迷,mamicode.com
首页 > 其他好文 > 详细

常用Function 收集

时间:2016-12-03 18:19:14      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:bsp   常用   nbsp   产生   字符   cti   div   span   nop   

 

1、随机数生成函数(来源-微信支付demo案例)

    /**
     * 
     * 产生随机字符串,不长于32位
     * @param int $length
     * @return 产生的随机字符串
     */
    public static function getNonceStr($length = 32) 
    {
        $chars = "abcdefghijklmnopqrstuvwxyz0123456789";  
        $str ="";
        for ( $i = 0; $i < $length; $i++ )  {  
            $str .= substr($chars, mt_rand(0, strlen($chars)-1), 1);  
        } 
        return $str;
    }

 

常用Function 收集

标签:bsp   常用   nbsp   产生   字符   cti   div   span   nop   

原文地址:http://www.cnblogs.com/wangyuman26/p/6129021.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!