最近專案中接觸到了一個新的php驗證碼工具-Securimage,使用起來非常簡單和方便,並且支援ajax調用,因此在這裡給大家推薦一下。
什麼是Securimage?
Securimage是一個開源/免費的phpCAPTCHA腳本,它可以用來產生複雜的驗證碼圖片,幫助您的網站防止spam。它可以輕鬆嵌入網站已儲存的表單中,為您的網站提供spam機器人的防護。它可以運行於大部分支援php(GD)的webserver。
*點這裡查看快速指南
*Securimage實例
*下載最新版本
Securimage的功能:
* 僅用三行程式碼即可顯示驗證碼
* 僅用六行程式碼即可對驗證碼的輸入進行驗證
* 自訂驗證碼長度
* 自訂字元集
* 支持TTF
* 使用自訂的GD字體(若TTF不支援)
* 輕鬆新增自訂背景圖片
* 豐富的文字支持,包括色彩/角度/透明度選項
* 文字困惑Arched lines through text
* 產生wav格式的CAPTCHA音訊文件
* 自訂CAPTCHA的驗證碼清單
下面給大家一個簡單的範例:
<html>
<head>
<title>Securimage Test Form</title>
</head>
<body>
<?php
if (empty($_POST)){?>
<form method="POST">
Username:<br />
<input type="text" name="username" /><br />
Password:<br />
<input type="text" name="password" /><br />
<!-- 呼叫securimage,顯示驗證碼圖片,sid是用來防止被cache住的-->
<img src="securimage_show.php?sid=<?php echomd5(uniqid(time()));?>"><br />
<input type="text" name="code" /><br />
<input type="submit" value="Submit Form" />
</form>
<?php
} else{//form is posted
include("securimage.php");
$img=new Securimage();
$valid=$img->check($_POST['code']);//檢查使用者的輸入是否正確
if($valid==true) {
echo "<center>Thanks, you entered the correct code.</center>";
} else{
echo "<center>Sorry, the code you entered was invalid. <a href="javascript:history.go(-1)">Go back</a> to try again.</center>";
}
}
?>
</body>
</html>
securimage_show.php的程式碼:
<?php
include 'securimage.php';//下載套件裡面的核心類別庫程式碼
$img=new securimage();
$img->show();// alternate use: $img->show('/path/to/background.jpg');
?>