php 生成随机字符串
Posted Technofiend
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 生成随机字符串相关的知识,希望对你有一定的参考价值。
<?php
function generateRandomString($length = 15)
return substr(str_shuffle(str_repeat($x='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ', ceil($length/strlen($x)))), 1, $length);
$db = new PDO('mysql:host=127.0.0.1;dbname=random', 'root', 'xxxxxxx');
$stmt = $db->prepare("INSERT INTO random(`random`) VALUES(?);");
for ($i = 0; $i <= 150000; $i++)
$stmt->execute(array(generateRandomString()));
以上是关于php 生成随机字符串的主要内容,如果未能解决你的问题,请参考以下文章