我用 PHP 制作了自己的验证码类,只是为了学习。没关系,按我的意愿工作。我试图添加一个“刷新图像”按钮,但我不知道该怎么做。
表格代码:
<p><img src="img.php" alt="Captcha!" /></p>
img.php 代码:
<?php
require_once 'captcha.class.php';
$captcha = Captcha::instance(10);
echo $captcha;
?>
__toString 方法:
public function __toString()
{
ob_start();
header('Content-Type: image/jpeg');
imagejpeg($this->drawImage(), null, 100);
return ob_get_flush();
}
这些代码将输出验证码。我怎样才能刷新这个图像?AJAX 中的东西会很棒!谢谢你。