|
写了个验证码yzm.php。
<?php
session_start();
header('content-type:image/gif;');
for($_i=0;$_i<4;$_i++){
$_code.=dechex(mt_rand(0,15));
}
$_SESSION['code']=$_code;
$_img=imagecreatetruecolor(50,26);
$_blue=imagecolorallocate($_img,20,66,111);
imagefill($_img,0,0,$_blue);
$_white=imagecolorallocate($_img,255,255,255);
imagestring($_img,8,6,6,$_SESSION['code'],$_white);
imagegif($_img);
imagedestroy($_img);
?>
在本地用/yzm.php掉用不了,把这个写成控制器里方法/yzm就能用!
但在上传到服务器上可用/yzm.php?xxxxxxx,是不是本地的服务器没配置好?新手请教!
|
|