這篇文章介紹的內容是php產生隨機驗證碼 ,現在分享給大家,有需要的朋友可以參考一下
<?php /** * 生成随机字符串 * @param int $num 生成的随机字符串的个数 * @return str 生成的随机字符串 */ function randStr($num=6) { $str = str_shuffle('abcedfghjkmnpqrstuvwxyzABCEDFGHJKMNPQRSTUVWXYZ23456789'); return substr($str, 0 , $num); } //1.创建画布 $pic = imagecreatetruecolor(80, 50); //2.创建颜料(RGB) $red = imagecolorallocate($pic, 255, 0, 0); $blue = imagecolorallocate($pic, 127, 127, 127); //3.背景填充 imagefill($pic, 0, 0, $red); //4.写入文字 imagestring($pic, 5, 5, 5, randStr(4), $blue); //5. 输出/保存图形 header('Content-type:image/png'); imagepng($pic); //6. 销毁画布(关闭画板) imagedestroy($pic); ?>
相關推薦:
以上是008-php產生隨機驗證碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!