获取用于创建图像的变量

时间:2015-05-24 20:08:34

标签: php

我正在创建自己的'验证码'表单,现在我有一个生成图像的页面:

<?php
   header('Content-Type: image/png');
   $im = imagecreatetruecolor(200, 50);

   $white = imagecolorallocate($im, 255, 255, 255);
   $gray = imagecolorallocate($im, 160, 160, 160);

   imagefilledrectangle($im, 0, 0, 200, 50, $white);

   $captcha = "SOMErandomTEXT";

   $font = 'Chewy.ttf';

   imagettftext($im, 20, 0, 0, 20, $gray, $font, $captcha);

   imagepng($im);
   imagedestroy($im);
?>

现在我还有另一个页面,在表单内显示此图像。现在我想从另一页上面显示的页面中获取值$captcha。我该怎么办?

1 个答案:

答案 0 :(得分:0)

使用会话为我完成了这项工作。 PHP Sessions