天天躁日日躁狠狠躁AV麻豆-天天躁人人躁人人躁狂躁-天天澡夜夜澡人人澡-天天影视香色欲综合网-国产成人女人在线视频观看-国产成人女人视频在线观看

php GD繪制24小時(shí)柱狀圖

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個(gè)數(shù)字 一個(gè)都不能少哦少了要出錯(cuò) 你可以修改函數(shù)判斷一下
復(fù)制代碼 代碼如下:
<?php    
/*   
24小時(shí)柱狀圖   
作者:taokey   
QQ:29611705   
*/   

function h24($str){    

        $hour = explode(",",$str);    
        $hmax = max($hour);    
        $ppix = 150/$hmax;    

        //計(jì)算柱狀圖高度    
        $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;    

        //創(chuàng)建一個(gè)img    
        $img = imagecreate(755,210);    
        //背景    
        $bgc = imagecolorallocate ($img, 245, 250, 254);    
        //黑色    
        $bc = imagecolorallocate($img,0,0,0);    
        //畫(huà)豎軸    
        imageline($img,15,30,15,189, $bc);    
        //畫(huà)橫軸    
        imageline($img,15,190,750,190, $bc);    

        //畫(huà)豎軸點(diǎn)    
        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);    
        }    

        //畫(huà)橫軸點(diǎn)    
        $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);    
        }    
        //豎軸標(biāo)記    
        $x = ceil($hmax/10);    
        imagestring($img,2,10,15,"X=".$x,$bc);    
        //豎軸標(biāo)記    

        //0點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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點(diǎn)    
        $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);    

        //加個(gè)邊框 加了之后不好看    
        //imagerectangle($img, 0, 0, 754, 209, $bc);    

        imagepng($img);    
        imagedestroy($img);            
}    
$str = isset($_GET['str'])?$_GET['str']:"";    
if($str){    
        h24($str);    
}    
?>

php技術(shù)php GD繪制24小時(shí)柱狀圖,轉(zhuǎn)載需保留來(lái)源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 內射XXX韩国在线观看 | 美女动态图真人后进式 | 男人的天堂MV在线视频免费观看 | 操中国老太太 | 中字幕视频在线永久在线观看免费 | 羞羞漫画免费漫画页面在线看漫画秋蝉 | www.欧美与曽交性video | 夜月视频直播免费观看 | 精品免费久久久久久影院 | 亚洲色综合中文字幕在线 | 日本红怡院亚洲红怡院最新 | 中文字幕高清在线观看 | 久久精品电影网 | 国产精品久久一区二区三区蜜桃 | 色多多污网站在线观看 | 国产99久久亚洲综合精品西瓜tv | 女人吃男人的鸡鸡 | 吻嘴胸全身好爽床大全 | 快播官方网站 | 亚欧洲乱码视频一二三区 | 国产一区二区三区乱码在线观看 | 国产乱对白精彩在线播放 | 护士被老头边摸边吃奶的视频 | 久草精品在线 | 午夜啪啪免费视频 | 亚洲国产在线2o20 | 伊人狠狠丁香婷婷综合尤物 | 在线电台收听 | 芒果影院网站在线观看 | gogogo高清在线观看 | 在线播放真实国产乱子伦 | 欧美 另类 美腿 亚洲 无码 | 国语精彩对白2021 | 亚洲精品久久无码AV片WWW | 爱人 qvod | 97亚洲狠狠色综合久久位 | 国产在线精品亚洲第1页 | 久久九九日本韩国精品 | 97人妻精品全国免费视频 | 欧美亚洲视频在线二区 | 欧美亚洲韩日午夜 |