网络营销电子商务研究中心  
How to buy the best prescription safety glasses in Canada? Let's study!
Go Back   网络营销电子商务研究中心 > 网站设计 > PHP
User Name
Password
 
FAQ Members List Calendar Cheap Glasses

Reply
 
Thread Tools Display Modes
  #1   IP: 180.125.50.74
Old 2015-01-16, 09:18 AM
Neah Bay Neah Bay is offline
初级会员
 
Join Date: 2007-07-14
Posts: 1
Neah Bay 现在声名狼藉
Default Php自动生成随机密码

Code:
<?php


 function rand_string($len = 16, $keyword = '') {
     if (strlen($keyword) > $len) {//关键字不能比总长度长
        return false;
     }
     $str = '';
     $chars = 'abcdefghijkmnpqrstuvwxyz23456789ABCDEFGHIJKMNPQRSTUVWXYZ'; //去掉1跟字母l防混淆            
     if ($len > strlen($chars)) {//位数过长重复字符串一定次数
        $chars = str_repeat($chars, ceil($len / strlen($chars)));
     }
     $chars = str_shuffle($chars); //打乱字符串
    $str = substr($chars, 0, $len);
     if (!empty($keyword)) {
         $start = $len - strlen($keyword);
         $str = substr_replace($str, $keyword, mt_rand(0, $start), strlen($keyword)); //从随机位置插入关键字
    }
     return $str;
 }


 echo rand_string(16,"ab"); //output example:V8bNY6SmkeywordB
 ?>
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Prescription-glasses.com offers prescription glasses online at discount prices.
All times are GMT +8. The time now is 09:27 PM.


Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.