- function _code($_code_length = 4, $_width = 75, $_height = 25){
- for($i=0;$i<$_code_length;$i++){
- $_nmsg .= dechex(mt_rand(0,15));
- }
- $_SESSION["code"] = $_nmsg;
- $_img = imagecreatetruecolor($_width, $_height);
- $_white = imagecolorallocate($_img, 250, 250, 250);
- imagefill($_img, 0, 0, $_white);
- $_gray = imagecolorallocate($_img, 196, 196, 196);
- imagerectangle($_img, 0, 0, $_width-1, $_height-1, $_gray);
- for ($i=0; $i < 6; $i++) {
- $_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
- imageline($_img, mt_rand(0,$_width), mt_rand(0, $_height),mt_rand(0,$_width), mt_rand(0, $_height), $_md_color);
- }
- for ($i=0; $i < 50; $i++) {
- $_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
- imagestring($_img, 1, mt_rand(1,$_width-5), mt_rand(1, $_height-5), "*", $_md_color);
- }
- for ($i=0; $i < $_code_length ; $i++) {
- $_md_color = imagecolorallocate($_img, mt_rand(0,102), mt_rand(0,102), mt_rand(0,102));
- imagestring($_img, 5, $i * $_width/$_code_length+ mt_rand(1, 10), mt_rand(1, $_height/2), $_SESSION["code"][$i], $_md_color);
- }
- header("Content-Type:image/png");
- imagepng($_img);
- imagedestroy($_img);
- }
基于php驗證碼函數的使用示例
2020-03-23 13:25PHP教程網 PHP教程
本篇文章關于php驗證碼函數的應用,用示例說明。需要的朋友參考下
延伸 · 閱讀
- 2022-03-11Python 函數裝飾器應用教程
- 2022-03-11Python全棧之文件函數和函數參數
- 2022-03-10簡單談談centos7中配置php
- 2022-03-10Android獲取驗證碼倒計時實現代碼
- 2022-03-10android實現驗證碼按鈕
- 2022-03-10C++ 函數的介紹
- PHP教程
PHP之使用swoole統計在線人數和ID案例講解
這篇文章主要介紹了PHP之使用swoole統計在線人數和ID案例講解,本篇文章通過簡要的案例,講解了該項技術的了解與使用,以下就是詳細內容,需要的朋友可以參...
- PHP教程
PHP里8個鮮為人知的安全函數分析
這篇文章主要介紹了PHP里8個鮮為人知的安全函數,較為詳細的分析了addslashes、htmlentities、htmlspecialchars及md5等函數在PHP程序設計安全中所起到重要作用,非常...
- PHP教程
PHP設計模式之迭代器模式Iterator實例分析【對象行為型】
這篇文章主要介紹了PHP設計模式之迭代器模式Iterator,結合實例形式分析了PHP迭代器模式Iterator相關概念、原理、實現方法與操作注意事項,需要的朋友可以參...
- PHP教程
php 數組元素快速去重
本篇文章主要介紹了php數組元素快速去重的方法,具有很好的參考價值。下面跟著小編一起來看下吧...
- PHP教程
Laravel框架使用Redis的方法詳解
這篇文章主要介紹了Laravel框架使用Redis的方法,結合實例形式較為詳細的分析了Laravel框架中Redis數據庫配置、使用方法及相關操作注意事項,需要的朋友可以...
- PHP教程
eclipse php wamp配置教程
這篇文章主要為大家詳細介紹了eclipse php wamp配置教程,極其簡單的php入門教程,感興趣的小伙伴們可以參考一下...
- PHP教程
PHP基于php_imagick_st-Q8.dll實現JPG合成GIF圖片的方法
這篇文章主要介紹了PHP基于php_imagick_st-Q8.dll實現JPG合成GIF圖片的方法,需要的朋友可以參考下 ...
- PHP教程
PHP中使用匿名函數操作數據庫的例子
這篇文章主要介紹了PHP中使用匿名函數操作數據庫的例子,本文直接給出類的代碼、使用例子、繼承例子,需要的朋友可以參考下...