帮忙看下我代码哪里有问题- <?php
- for($a=0;$a<4;$a++){
- @ $yzm.=dechex(rand(0,15));
- }
- $im=imagecreatetruecolor(100,30);
- $bj=imagecolorallocate($im,0,0,0);
- $zt=imagecolorallocate($im,255,255,255);
- imagestring($im,5,25,10,$yzm,$zt);
- header("Content-type: image/jpeg");
- imagejpeg($im);
- ?>
复制代码 |