code.php
来自「LOVESTUdio多校园交易系统 VER 4.0基于3.0开发」· PHP 代码 · 共 20 行
PHP
20 行
<?php
ob_start();
session_start();
$rands = rand(1000,9999);
header("Content-type: image/gif");
$_SESSION['reg_code'] = $rands;
$im = @imagecreate(40, 15);
imagecolorallocate($im, 240, 240, 240);
$loc = 2;
$color1=imagecolorallocate($im, 0, 0, 0);
for($i=0;$i<4;$i++){
$color=imagecolorallocate($im, rand(0,255), rand(0,255), rand(0,255));
imagestring($im, 4, ($loc+1), 1, substr($rands,$i,1), $color1);
imagestring($im, 4, $loc, 0, substr($rands,$i,1), $color);
$loc += 9;
}
Imagegif($im);
imagedestroy($im);
ob_end_flush();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?