当前位置: 编程技术>php
本页文章导读:
▪discuz Passport 通行证 整合笔记
太简单了,但时间长了,记不得,浪费我半小时找资料,深刻体会好记性不如烂笔头!!今天把passport文挡贴上,防止以后忘记!!记住,网上找到自己需要的资料也要耗时间的!!!!!!
Passport .........
▪php下检测字符串是否是utf8编码的代码
function is_utf8($string) { return preg_match('%^(?: [\x09\x0A\x0D\x20-\x7E] # ASCII | [\xC2-\xDF][\x80-\xBF] # non-overl.........
▪php GD绘制24小时柱状图
80,250,430,134,35,60,233,90,263,225,120,59,151,677,340,221,550,300,229,97,230,123,133,87 一共24个数字 一个都不能少哦少了要出错 你可以修改函数判断一下 代码如下:<?PHP /* 24小时柱状图 .........
[1]discuz Passport 通行证 整合笔记
来源: 互联网 发布时间: 2013-11-30
太简单了,但时间长了,记不得,浪费我半小时找资料,深刻体会好记性不如烂笔头!!今天把passport文挡贴上,防止以后忘记!!记住,网上找到自己需要的资料也要耗时间的!!!!!!
Passport 通行证 整合第一篇:整合原理
请注意: 整合不成功可能造成的后果-----dz论坛无法登录,无法管理
解决办法:
第一步: 到dz的数据库表cdb_settings 找到下面这几行修改为
第二步: 删除dz安装目录/forumdata/cache/cache_settings.php
第三步: 重新访问论坛
登陆和注册整合流程
用户从登陆或注册表单提交帐号密码信息 ==>
主站程序检验用户登陆或注册,成功(注册需要生成新用户)则 ==>
设置主站自身的cookie或session ==>
url传递 返回地址forward和编码后的用户信息和其他信息 到dz/api/passport.php
整合之前请先仔细阅读官方passport技术文档: http://www.discuz.net/usersguide/advanced_passport.htm
Passport 通行证 整合第一篇:整合原理
请注意: 整合不成功可能造成的后果-----dz论坛无法登录,无法管理
解决办法:
第一步: 到dz的数据库表cdb_settings 找到下面这几行修改为
setting.gif (4.3 KB)
2006-9-30 13:59
第二步: 删除dz安装目录/forumdata/cache/cache_settings.php
第三步: 重新访问论坛
登陆和注册整合流程
用户从登陆或注册表单提交帐号密码信息 ==>
主站程序检验用户登陆或注册,成功(注册需要生成新用户)则 ==>
设置主站自身的cookie或session ==>
url传递 返回地址forward和编码后的用户信息和其他信息 到dz/api/passport.php
整合之前请先仔细阅读官方passport技术文档: http://www.discuz.net/usersguide/advanced_passport.htm
复制内容到剪贴板
代码:<?php
//该文档保存为login.php
//首先将接口技术文档里的加密解密函数拷贝
//为了不让代码太乱,我拷贝到文档的结尾处
//假设自己的用户数据库表里用户名字段为UserName, 密码字段为Pwd, Email字段为 Email
//注册页实现方法差不多,可自行实现,疑问加我QQ:2666556
$act=(isset($_GET['act']))?$_GET['act']:"login";
if(function_exists($act)) $act();else login();
function login()
{
$ErrMsg=UserCheck();
if($ErrMsg!="")echo $ErrMsg;
//后面加上显示你的登陆表单的代码 如
?>
<form action=login.php?act=login method=post>
用户名:<input name=username>
密码:<input name=password>
<input name=submit type=submit value=登陆></form>
<?php
}//end function
function logout()//登出
{
$passportkey="1234567890";//这里换成你论坛通行证设置的passportkey
$auth=$_COOKIE['auth'];
setcookie("auth", "",time() - 3600);
$forward=$_GET['forward'];
if($forward=="")$forward="../../index.php";//这里换成你的主页绝对地址或相对地址
$verify = md5('logout'.$auth.$forward.$passportkey);
$auth=rawurlencode($auth);
$forward=rawurlencode($forward);
header("Location: bbs/api/passport.php?action=logout&auth=$auth&forward=$forward&verify=$verify");
}
function UserCheck()
{
$passportkey="1234567890";//这里换成你论坛通行证设置的passportkey
//===========验证输入=====================
if(!isset($_POST['submit'])) return; // login表单的按钮需要与此同名
$usnm=$_POST['username'];//username换成你登陆表单里的用户名域
$pwd=$_POST['password'];//password换成你登陆表单里的密码域
if($usnm=="") return "请输入用户名!";
if($pwd=="") return "请输入密码!";
//=========数据库处理==========================
$db=mysql_connect("localhost", "root", "");
mysql_select_db("your_db_name");
$sql="Select * from `user` where UserName='".$usnm."' Limit 1";
$rs = mysql_query($sql,$db) ;
$row = mysql_fetch_array($rs);
if(!$row)return "该用户不存在";
if($row["Pwd"]!=md5($pwd))return "密码错误";
mysql_free_result($rs);
//==============header到bbs=====================
$member = array
(
'time' => time(),
'username' => $row["UserName"],
'password' => $row["Pwd"],
'email' => $row["Email"]
);
$auth = passport_encrypt(passport_encode($member), $passportkey);
setcookie("auth",$auth,($_POST["Cookie"]? time()+(int)$_POST["Cookie"] :0));
$forward=$_POST['forward'];
if($forward=="")$forward="../../index.php";
$verify = md5('login'.$auth.$forward.$passportkey);
$auth=rawurlencode($auth);
$forward=rawurlencode($forward);
header("Location: bbs/api/passport.php?action=login&auth=$auth&forward=$forward&verify=$verify");
}
//=============================================================
//=============以下为拷贝过来的函数============================
function passport_encrypt($txt, $key) {
srand((double)microtime() * 1000000);
$encrypt_key = md5(rand(0, 32000));
$ctr = 0;
$tmp = '';
for($i = 0; $i < strlen($txt); $i++) {
$ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
$tmp .= $encrypt_key[$ctr].($txt[$i] ^ $encrypt_key[$ctr++]);
}
return base64_encode(passport_key($tmp, $key));
}
function passport_decrypt($txt, $key) {
$txt = passport_key(base64_decode($txt), $key);
$tmp = '';
for ($i = 0; $i < strlen($txt); $i++) {
$tmp .= $txt[$i] ^ $txt[++$i];
}
return $tmp;
}
function passport_key($txt, $encrypt_key) {
$encrypt_key = md5($encrypt_key);
$ctr = 0;
$tmp = '';
for($i = 0; $i < strlen($txt); $i++) {
$ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
$tmp .= $txt[$i] ^ $encrypt_key[$ctr++];
}
return $tmp;
}
function passport_encode($array) {
$arrayenc = array();
foreach($array as $key => $val) {
$arrayenc[] = $key.'='.urlencode($val);
}
return implode('&', $arrayenc);
}
//=========================================================================
//===========================拷贝结束======================================
?>
//该文档保存为login.php
//首先将接口技术文档里的加密解密函数拷贝
//为了不让代码太乱,我拷贝到文档的结尾处
//假设自己的用户数据库表里用户名字段为UserName, 密码字段为Pwd, Email字段为 Email
//注册页实现方法差不多,可自行实现,疑问加我QQ:2666556
$act=(isset($_GET['act']))?$_GET['act']:"login";
if(function_exists($act)) $act();else login();
function login()
{
$ErrMsg=UserCheck();
if($ErrMsg!="")echo $ErrMsg;
//后面加上显示你的登陆表单的代码 如
?>
<form action=login.php?act=login method=post>
用户名:<input name=username>
密码:<input name=password>
<input name=submit type=submit value=登陆></form>
<?php
}//end function
function logout()//登出
{
$passportkey="1234567890";//这里换成你论坛通行证设置的passportkey
$auth=$_COOKIE['auth'];
setcookie("auth", "",time() - 3600);
$forward=$_GET['forward'];
if($forward=="")$forward="../../index.php";//这里换成你的主页绝对地址或相对地址
$verify = md5('logout'.$auth.$forward.$passportkey);
$auth=rawurlencode($auth);
$forward=rawurlencode($forward);
header("Location: bbs/api/passport.php?action=logout&auth=$auth&forward=$forward&verify=$verify");
}
function UserCheck()
{
$passportkey="1234567890";//这里换成你论坛通行证设置的passportkey
//===========验证输入=====================
if(!isset($_POST['submit'])) return; // login表单的按钮需要与此同名
$usnm=$_POST['username'];//username换成你登陆表单里的用户名域
$pwd=$_POST['password'];//password换成你登陆表单里的密码域
if($usnm=="") return "请输入用户名!";
if($pwd=="") return "请输入密码!";
//=========数据库处理==========================
$db=mysql_connect("localhost", "root", "");
mysql_select_db("your_db_name");
$sql="Select * from `user` where UserName='".$usnm."' Limit 1";
$rs = mysql_query($sql,$db) ;
$row = mysql_fetch_array($rs);
if(!$row)return "该用户不存在";
if($row["Pwd"]!=md5($pwd))return "密码错误";
mysql_free_result($rs);
//==============header到bbs=====================
$member = array
(
'time' => time(),
'username' => $row["UserName"],
'password' => $row["Pwd"],
'email' => $row["Email"]
);
$auth = passport_encrypt(passport_encode($member), $passportkey);
setcookie("auth",$auth,($_POST["Cookie"]? time()+(int)$_POST["Cookie"] :0));
$forward=$_POST['forward'];
if($forward=="")$forward="../../index.php";
$verify = md5('login'.$auth.$forward.$passportkey);
$auth=rawurlencode($auth);
$forward=rawurlencode($forward);
header("Location: bbs/api/passport.php?action=login&auth=$auth&forward=$forward&verify=$verify");
}
//=============================================================
//=============以下为拷贝过来的函数============================
function passport_encrypt($txt, $key) {
srand((double)microtime() * 1000000);
$encrypt_key = md5(rand(0, 32000));
$ctr = 0;
$tmp = '';
for($i = 0; $i < strlen($txt); $i++) {
$ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
$tmp .= $encrypt_key[$ctr].($txt[$i] ^ $encrypt_key[$ctr++]);
}
return base64_encode(passport_key($tmp, $key));
}
function passport_decrypt($txt, $key) {
$txt = passport_key(base64_decode($txt), $key);
$tmp = '';
for ($i = 0; $i < strlen($txt); $i++) {
$tmp .= $txt[$i] ^ $txt[++$i];
}
return $tmp;
}
function passport_key($txt, $encrypt_key) {
$encrypt_key = md5($encrypt_key);
$ctr = 0;
$tmp = '';
for($i = 0; $i < strlen($txt); $i++) {
$ctr = $ctr == strlen($encrypt_key) ? 0 : $ctr;
$tmp .= $txt[$i] ^ $encrypt_key[$ctr++];
}
return $tmp;
}
function passport_encode($array) {
$arrayenc = array();
foreach($array as $key => $val) {
$arrayenc[] = $key.'='.urlencode($val);
}
return implode('&', $arrayenc);
}
//=========================================================================
//===========================拷贝结束======================================
?>
[2]php下检测字符串是否是utf8编码的代码
来源: 互联网 发布时间: 2013-11-30
function is_utf8($string) {
return preg_match('%^(?:
[\x09\x0A\x0D\x20-\x7E] # ASCII
| [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
| \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
| \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
| \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
| [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
| \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
)*$%xs', $string);
}
准确率基本和mb_detect_encoding一样,要对一起对,要错一起错。
编码检测不可能100%准确,这个东西已经可以基本满足要求了。
return preg_match('%^(?:
[\x09\x0A\x0D\x20-\x7E] # ASCII
| [\xC2-\xDF][\x80-\xBF] # non-overlong 2-byte
| \xE0[\xA0-\xBF][\x80-\xBF] # excluding overlongs
| [\xE1-\xEC\xEE\xEF][\x80-\xBF]{2} # straight 3-byte
| \xED[\x80-\x9F][\x80-\xBF] # excluding surrogates
| \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3
| [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15
| \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16
)*$%xs', $string);
}
准确率基本和mb_detect_encoding一样,要对一起对,要错一起错。
编码检测不可能100%准确,这个东西已经可以基本满足要求了。
[3]php GD绘制24小时柱状图
来源: 互联网 发布时间: 2013-11-30
80,250,430,134,35,60,233,90,263,225,120,59,151,677,340,221,550,300,229,97,230,123,133,87 一共24个数字 一个都不能少哦少了要出错 你可以修改函数判断一下
<?PHP
/*
24小时柱状图
作者:taokey
QQ:29611705
*/
function h24($str){
$hour = explode(",",$str);
$hmax = max($hour);
$ppix = 150/$hmax;
//计算柱状图高度
$h0 = 190-$hour[0]*$ppix;
$h1 = 190-$hour[1]*$ppix;
$h2 = 190-$hour[2]*$ppix;
$h3 = 190-$hour[3]*$ppix;
$h4 = 190-$hour[4]*$ppix;
$h5 = 190-$hour[5]*$ppix;
$h6 = 190-$hour[6]*$ppix;
$h7 = 190-$hour[7]*$ppix;
$h8 = 190-$hour[8]*$ppix;
$h9 = 190-$hour[9]*$ppix;
$h10 = 190-$hour[10]*$ppix;
$h11 = 190-$hour[11]*$ppix;
$h12 = 190-$hour[12]*$ppix;
$h13 = 190-$hour[13]*$ppix;
$h14 = 190-$hour[14]*$ppix;
$h15 = 190-$hour[15]*$ppix;
$h16 = 190-$hour[16]*$ppix;
$h17 = 190-$hour[17]*$ppix;
$h18 = 190-$hour[18]*$ppix;
$h19 = 190-$hour[19]*$ppix;
$h20 = 190-$hour[20]*$ppix;
$h21 = 190-$hour[21]*$ppix;
$h22 = 190-$hour[22]*$ppix;
$h23 = 190-$hour[23]*$ppix;
//创建一个img
$img = imagecreate(755,210);
//背景
$bgc = imagecolorallocate ($img, 245, 250, 254);
//黑色
$bc = imagecolorallocate($img,0,0,0);
//画竖轴
imageline($img,15,30,15,189, $bc);
//画横轴
imageline($img,15,190,750,190, $bc);
//画竖轴点
for($i=39,$j=10;$i<189;$i=$i+15,$j--){
imageline($img,13,$i,15,$i, $bc);
imagestring($img,1,1,$i-4,$j."x", $bc);
}
//画横轴点
$t = true;
for($i=31,$j=29;$i<750;$i=$j+1,$j=$j+15){
if($t){
$x=$i;
$t=false;
}else{
$x=$i+1;
$t=true;
}
imageline($img,$x,190,$x,192, $bc);
}
//竖轴标记
$x = ceil($hmax/10);
imagestring($img,2,10,15,"X=".$x,$bc);
//竖轴标记
//0点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,31,$h0,45,189,$color);
imagestring($img,1,31,$h0-10,$hour[0],$color);
imagechar($img,1,36,195,0,$bc);
//1点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,61,$h1,75,189,$color);
imagestring($img,1,61,$h1-10,$hour[1],$color);
imagechar($img,1,66,195,1,$bc);
//2点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,91,$h2,105,189,$color);
imagestring($img,1,91,$h2-10,$hour[2],$color);
imagechar($img,1,96,195,2,$bc);
//3点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,121,$h3,135,189,$color);
imagestring($img,1,121,$h3-10,$hour[3],$color);
imagechar($img,1,126,195,3,$bc);
//4点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,151,$h4,165,189,$color);
imagestring($img,1,151,$h4-10,$hour[4],$color);
imagechar($img,1,156,195,4,$bc);
//5点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,181,$h5,195,189,$color);
imagestring($img,1,181,$h5-10,$hour[5],$color);
imagechar($img,1,186,195,5,$bc);
//6点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,211,$h6,225,189,$color);
imagestring($img,1,211,$h6-10,$hour[6],$color);
imagechar($img,1,216,195,6,$bc);
//7点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,241,$h7,255,189,$color);
imagestring($img,1,241,$h7-10,$hour[7],$color);
imagechar($img,1,246,195,7,$bc);
//8点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,271,$h8,285,189,$color);
imagestring($img,1,271,$h8-10,$hour[8],$color);
imagechar($img,1,276,195,8,$bc);
//9点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,301,$h9,315,189,$color);
imagestring($img,1,301,$h9-10,$hour[9],$color);
imagechar($img,1,306,195,9,$bc);
//10点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,331,$h10,345,189,$color);
imagestring($img,1,331,$h10-10,$hour[10],$color);
imagestring($img,1,334,195,10,$bc);
//11点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,361,$h11,375,189,$color);
imagestring($img,1,361,$h11-10,$hour[11],$color);
imagestring($img,1,364,195,11,$bc);
//12点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,391,$h12,405,189,$color);
imagestring($img,1,391,$h12-10,$hour[12],$color);
imagestring($img,1,394,195,12,$bc);
//13点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,421,$h13,435,189,$color);
imagestring($img,1,421,$h13-10,$hour[13],$color);
imagestring($img,1,424,195,13,$bc);
//14点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,451,$h14,465,189,$color);
imagestring($img,1,451,$h14-10,$hour[14],$color);
imagestring($img,1,454,195,14,$bc);
//15点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,481,$h15,495,189,$color);
imagestring($img,1,481,$h15-10,$hour[15],$color);
imagestring($img,1,481,195,15,$bc);
//16点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,511,$h16,525,189,$color);
imagestring($img,1,511,$h16-10,$hour[16],$color);
imagestring($img,1,511,195,16,$bc);
//17点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,541,$h17,555,189,$color);
imagestring($img,1,541,$h17-10,$hour[17],$color);
imagestring($img,1,544,195,17,$bc);
//18点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,571,$h18,585,189,$color);
imagestring($img,1,571,$h18-10,$hour[18],$color);
imagestring($img,1,571,195,18,$bc);
//19点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,601,$h19,615,189,$color);
imagestring($img,1,601,$h19-10,$hour[19],$color);
imagestring($img,1,604,195,19,$bc);
//20点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,631,$h20,645,189,$color);
imagestring($img,1,631,$h20-10,$hour[20],$color);
imagestring($img,1,634,195,20,$bc);
//21点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,661,$h21,675,189,$color);
imagestring($img,1,661,$h21-10,$hour[21],$color);
imagestring($img,1,664,195,21,$bc);
//22点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,691,$h22,705,189,$color);
imagestring($img,1,691,$h22-10,$hour[22],$color);
imagestring($img,1,694,195,22,$bc);
//23点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,721,$h23,735,189,$color);
imagestring($img,1,721,$h23-10,$hour[23],$color);
imagestring($img,1,724,195,23,$bc);
//加个边框 加了之后不好看
//imagerectangle($img, 0, 0, 754, 209, $bc);
imagepng($img);
imagedestroy($img);
}
$str = isset($_GET['str'])?$_GET['str']:"";
if($str){
h24($str);
}
?>
代码如下:
<?PHP
/*
24小时柱状图
作者:taokey
QQ:29611705
*/
function h24($str){
$hour = explode(",",$str);
$hmax = max($hour);
$ppix = 150/$hmax;
//计算柱状图高度
$h0 = 190-$hour[0]*$ppix;
$h1 = 190-$hour[1]*$ppix;
$h2 = 190-$hour[2]*$ppix;
$h3 = 190-$hour[3]*$ppix;
$h4 = 190-$hour[4]*$ppix;
$h5 = 190-$hour[5]*$ppix;
$h6 = 190-$hour[6]*$ppix;
$h7 = 190-$hour[7]*$ppix;
$h8 = 190-$hour[8]*$ppix;
$h9 = 190-$hour[9]*$ppix;
$h10 = 190-$hour[10]*$ppix;
$h11 = 190-$hour[11]*$ppix;
$h12 = 190-$hour[12]*$ppix;
$h13 = 190-$hour[13]*$ppix;
$h14 = 190-$hour[14]*$ppix;
$h15 = 190-$hour[15]*$ppix;
$h16 = 190-$hour[16]*$ppix;
$h17 = 190-$hour[17]*$ppix;
$h18 = 190-$hour[18]*$ppix;
$h19 = 190-$hour[19]*$ppix;
$h20 = 190-$hour[20]*$ppix;
$h21 = 190-$hour[21]*$ppix;
$h22 = 190-$hour[22]*$ppix;
$h23 = 190-$hour[23]*$ppix;
//创建一个img
$img = imagecreate(755,210);
//背景
$bgc = imagecolorallocate ($img, 245, 250, 254);
//黑色
$bc = imagecolorallocate($img,0,0,0);
//画竖轴
imageline($img,15,30,15,189, $bc);
//画横轴
imageline($img,15,190,750,190, $bc);
//画竖轴点
for($i=39,$j=10;$i<189;$i=$i+15,$j--){
imageline($img,13,$i,15,$i, $bc);
imagestring($img,1,1,$i-4,$j."x", $bc);
}
//画横轴点
$t = true;
for($i=31,$j=29;$i<750;$i=$j+1,$j=$j+15){
if($t){
$x=$i;
$t=false;
}else{
$x=$i+1;
$t=true;
}
imageline($img,$x,190,$x,192, $bc);
}
//竖轴标记
$x = ceil($hmax/10);
imagestring($img,2,10,15,"X=".$x,$bc);
//竖轴标记
//0点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,31,$h0,45,189,$color);
imagestring($img,1,31,$h0-10,$hour[0],$color);
imagechar($img,1,36,195,0,$bc);
//1点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,61,$h1,75,189,$color);
imagestring($img,1,61,$h1-10,$hour[1],$color);
imagechar($img,1,66,195,1,$bc);
//2点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,91,$h2,105,189,$color);
imagestring($img,1,91,$h2-10,$hour[2],$color);
imagechar($img,1,96,195,2,$bc);
//3点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,121,$h3,135,189,$color);
imagestring($img,1,121,$h3-10,$hour[3],$color);
imagechar($img,1,126,195,3,$bc);
//4点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,151,$h4,165,189,$color);
imagestring($img,1,151,$h4-10,$hour[4],$color);
imagechar($img,1,156,195,4,$bc);
//5点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,181,$h5,195,189,$color);
imagestring($img,1,181,$h5-10,$hour[5],$color);
imagechar($img,1,186,195,5,$bc);
//6点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,211,$h6,225,189,$color);
imagestring($img,1,211,$h6-10,$hour[6],$color);
imagechar($img,1,216,195,6,$bc);
//7点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,241,$h7,255,189,$color);
imagestring($img,1,241,$h7-10,$hour[7],$color);
imagechar($img,1,246,195,7,$bc);
//8点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,271,$h8,285,189,$color);
imagestring($img,1,271,$h8-10,$hour[8],$color);
imagechar($img,1,276,195,8,$bc);
//9点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,301,$h9,315,189,$color);
imagestring($img,1,301,$h9-10,$hour[9],$color);
imagechar($img,1,306,195,9,$bc);
//10点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,331,$h10,345,189,$color);
imagestring($img,1,331,$h10-10,$hour[10],$color);
imagestring($img,1,334,195,10,$bc);
//11点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,361,$h11,375,189,$color);
imagestring($img,1,361,$h11-10,$hour[11],$color);
imagestring($img,1,364,195,11,$bc);
//12点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,391,$h12,405,189,$color);
imagestring($img,1,391,$h12-10,$hour[12],$color);
imagestring($img,1,394,195,12,$bc);
//13点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,421,$h13,435,189,$color);
imagestring($img,1,421,$h13-10,$hour[13],$color);
imagestring($img,1,424,195,13,$bc);
//14点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,451,$h14,465,189,$color);
imagestring($img,1,451,$h14-10,$hour[14],$color);
imagestring($img,1,454,195,14,$bc);
//15点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,481,$h15,495,189,$color);
imagestring($img,1,481,$h15-10,$hour[15],$color);
imagestring($img,1,481,195,15,$bc);
//16点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,511,$h16,525,189,$color);
imagestring($img,1,511,$h16-10,$hour[16],$color);
imagestring($img,1,511,195,16,$bc);
//17点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,541,$h17,555,189,$color);
imagestring($img,1,541,$h17-10,$hour[17],$color);
imagestring($img,1,544,195,17,$bc);
//18点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,571,$h18,585,189,$color);
imagestring($img,1,571,$h18-10,$hour[18],$color);
imagestring($img,1,571,195,18,$bc);
//19点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,601,$h19,615,189,$color);
imagestring($img,1,601,$h19-10,$hour[19],$color);
imagestring($img,1,604,195,19,$bc);
//20点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,631,$h20,645,189,$color);
imagestring($img,1,631,$h20-10,$hour[20],$color);
imagestring($img,1,634,195,20,$bc);
//21点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,661,$h21,675,189,$color);
imagestring($img,1,661,$h21-10,$hour[21],$color);
imagestring($img,1,664,195,21,$bc);
//22点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,691,$h22,705,189,$color);
imagestring($img,1,691,$h22-10,$hour[22],$color);
imagestring($img,1,694,195,22,$bc);
//23点
$color = imagecolorallocate($img, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));
imagefilledrectangle($img,721,$h23,735,189,$color);
imagestring($img,1,721,$h23-10,$hour[23],$color);
imagestring($img,1,724,195,23,$bc);
//加个边框 加了之后不好看
//imagerectangle($img, 0, 0, 754, 209, $bc);
imagepng($img);
imagedestroy($img);
}
$str = isset($_GET['str'])?$_GET['str']:"";
if($str){
h24($str);
}
?>
最新技术文章: