美文网首页
无标题文章

无标题文章

作者: Asuit | 来源:发表于2016-10-28 13:48 被阅读0次

    /**

    * 从规定字符中生成固定位数随即串

    * @param int $l 位数

    * @param string $c 数据来源字符串

    * @return string 返回随即串

    */

    publicstaticfunctionmt_rand_str ($l,$c= 'abcdefghijklmnopqrstuvwxyz1234567890')

    {

      $lenC=strlen($c);

      for($s= '',$cl=$lenC-1,$i= 0;$i<$l;$s.=$c[mt_rand(0,$cl)], ++$i);

      return$s;

    }

    相关文章

      网友评论

          本文标题:无标题文章

          本文链接:https://www.haomeiwen.com/subject/nadflttx.html