这是我的代码:
// captcha.php
<?php
session_start();
$min=0;
$max=9;
$captcha_token='';
for($i=1; $i<=5; $i++){$captcha_token .= rand($min,$max).' ';}
$_SESSION['captcha'] = str_replace(" ","",$captcha_token);
$im = imagecreatetruecolor(110, 34);
$red = imagecolorallocate($im, 245, 245, 245);
imagefill($im, 0, 0, $red);
$text_color = imagecolorallocate($im, 80, 80, 80);
imagestring($im, 8, 15, 9, $captcha_token, $text_color);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($im);
?>
我这样使用它:
<img src="../../files/captcha.php" class="captcha_pic" alt="Captcha" />
它也有效。如您所知,这是一个http请求。我的意思是我可以像这样打开那个图像:
http://localhost/myweb/files/captcha.php
现在我想更改file
目录的位置并将其从文档根目录中删除。所以我无法通过http请求访问captcha.php
。我必须使用绝对路径来获取它。怎么样?
注意到这不起作用:
<?php
$img = include __DIR__ . "/../../files/captcha.php";
?>
<img src="<?=$img?>" class="captcha_pic" alt="Captcha" />
答案 0 :(得分:1)
您可以将您的功能放在一个文件中,然后包含并使用它来生成base64编码的数据图像:
<?php
function createBinaryImageCaptcha($text) {
$im = imagecreatetruecolor(110, 34);
$red = imagecolorallocate($im, 245, 245, 245);
imagefill($im, 0, 0, $red);
$text_color = imagecolorallocate($im, 80, 80, 80);
imagestring($im, 8, 15, 9, $text, $text_color);
ob_start();
imagejpeg($im);
imagedestroy($im);
return ob_get_clean();
}
function createDataImage($binary) {
return 'data:image/jpeg;base64,' . base64_encode($binary);
}
然后在上面要求你可以放在你喜欢的地方。使用:
$img = createDataImage(createBinaryImageCaptcha('helloearth'))
?>
<img src="<?= $img ?>" alt="captcha text">
请记住,并非所有浏览器都支持图像数据uris。
Which browsers support data URIs and since which version?
请考虑验证码可访问性。