日期:2014-05-17 浏览次数:20464 次
<?php
$im = imagecreatetruecolor(50,25);
$red = imagecolorallocate($im,255,0,0);
$str = 'ABCDEFGHIJKMNPQRSTUVWXTZabcdefghijkmnpqrstuvwxtz23456789';
$str = substr(str_shuffle($str),0,4);
imagestring($im,5,8,5,$str,$red);
header('content-type:image/png');
imagepng($im);
imagedestroy($im);
?>