Typecho纯代码算术验证码加强版
纯代码算术验证码使用DevTools删除Num元素后,就不需要输入验证码也能评论了。所以我对这段代码做了加强处理。
修改内容
- 增加 判断num1、num2元素是否为空 若为空则提示验证码异常
- 增加 提示信息
<P>
标签 使提示信息字体增大 - 增加 验证码编辑框自适应宽度 根据屏幕大小自动变化宽度
- 修改 部分提示文案 警告信息简洁明了
- 修改 降低计算难度至30以内加法 心算更快
使用方法
在你的主题function.php文件内添加如下函数
function themeInit($comment) {
$comment = spam_protection_pre($comment, $post, $result);
}
function spam_protection_math() {
$num1 = rand(1, 15);
$num2 = rand(1, 15);
echo "<div style=\"display:flex;align-items: center;\"><p for=\"math\" id=\"Verification_code\" style=\"margin-bottom:0\">请输入<code>$num1</code>+<code>$num2</code>的计算结果:</p><input type=\"text\" name=\"sum\" class=\"text\" value=\"\" size=\"25\" id=\"sum\" tabindex=\"4\" style=\"flex:1\" placeholder=\"\">\n</div>";
echo "<input type=\"hidden\" name=\"num1\" value=\"$num1\">\n";
echo "<input type=\"hidden\" name=\"num2\" value=\"$num2\">";
}
function spam_protection_pre($comment, $post, $result) {
if ($_REQUEST['text'] != null) {
If($_POST['num1'] == null || $_POST['num2'] == null) {
throw new Typecho_Widget_Exception(_t('验证码异常.', '评论失败'));
} else {
$sum = $_POST['sum'];
switch ($sum) {
case $_POST['num1'] + $_POST['num2'] : break;
case null:
throw new Typecho_Widget_Exception(_t('请输入验证码.', '评论失败'));
break;
default:
throw new Typecho_Widget_Exception(_t('验证码错误.', '评论失败'));
}
}
}
return $comment;
}
在你的主题comments.php
文件内的合适位置添加如下函数
<?php spam_protection_math();?>
一般是在</form>
标签内添加
错误解决
若你在你的主题function.php
文件内themeInit
函数已被使用,请将如下函数加入至themeInit
函数代码块的最末端
$comment = spam_protection_pre($comment, $post, $result);
}
function spam_protection_math() {
$num1 = rand(1, 15);
$num2 = rand(1, 15);
echo "<div style=\"display:flex;align-items: center;\"><p for=\"math\" id=\"Verification_code\" style=\"margin-bottom:0\">请输入<code>$num1</code>+<code>$num2</code>的计算结果:</p><input type=\"text\" name=\"sum\" class=\"text\" value=\"\" size=\"25\" id=\"sum\" tabindex=\"4\" style=\"flex:1\" placeholder=\"\">\n</div>";
echo "<input type=\"hidden\" name=\"num1\" value=\"$num1\">\n";
echo "<input type=\"hidden\" name=\"num2\" value=\"$num2\">";
}
function spam_protection_pre($comment, $post, $result) {
if ($_REQUEST['text'] != null) {
If($_POST['num1'] == null || $_POST['num2'] == null) {
throw new Typecho_Widget_Exception(_t('验证码异常.', '评论失败'));
} else {
$sum = $_POST['sum'];
switch ($sum) {
case $_POST['num1'] + $_POST['num2'] : break;
case null:
throw new Typecho_Widget_Exception(_t('请输入验证码.', '评论失败'));
break;
default:
throw new Typecho_Widget_Exception(_t('验证码错误.', '评论失败'));
}
}
}
return $comment;
本文章中的代码是基于 https://minirizhi.com/22.html 的二次修改
本文章所有版权均为二次修改作者碎念_Nian所有 https://blog.nianbroken.top/archives/108/