最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php GD繪制24小時柱狀圖

 更新時間:2008年06月28日 00:14:47   作者:  
h24 這個函數就是生成柱狀圖的 函數需要一個字符串作為參數 這個參數的格式為:每小時的數量按照從0-23點的順序加逗號連接在一起 可以看例子里面的
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;    

        //創(chuàng)建一個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中如何判斷一個網頁請求是ajax請求還是普通請求

    php中如何判斷一個網頁請求是ajax請求還是普通請求

    以下是對php中如何判斷一個網頁請求是ajax請求還是普通請求的實現方法進行了詳細的分析介紹,需要的朋友可以過來參考下
    2013-08-08
  • PHP實現本地圖片轉base64格式并上傳

    PHP實現本地圖片轉base64格式并上傳

    這篇文章主要介紹了PHP實現本地圖片轉base64格式并上傳,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下
    2020-05-05
  • PHP中單例模式與工廠模式詳解

    PHP中單例模式與工廠模式詳解

    本文主要介紹了PHP中單例模式與工廠模式的相關知識。具有很好的參考價值,下面跟著小編一起來看下吧
    2017-02-02
  • PHP實現針對日期,月數,天數,周數,小時,分,秒等的加減運算示例【基于strtotime】

    PHP實現針對日期,月數,天數,周數,小時,分,秒等的加減運算示例【基于strtotime】

    這篇文章主要介紹了PHP實現針對日期,月數,天數,周數,小時,分,秒等的加減運算,結合實例形式分析了基于strtotime的簡單日期時間運算技巧,非常具有實用價值,需要的朋友可以參考下
    2017-04-04
  • 在ThinkPHP6中使用mysql進行分頁查詢的實現代碼

    在ThinkPHP6中使用mysql進行分頁查詢的實現代碼

    隨著互聯網的快速發(fā)展,web應用程序的開發(fā)也越來越復雜,而分頁查詢是web應用程序中常見的功能之一,thinkphp6是一個web框架,可以幫助開發(fā)人員快速開發(fā)應用程序,在本文中,我們將討論如何在thinkphp6中使用mysql進行分頁查詢,需要的朋友可以參考下
    2024-07-07
  • php微信開發(fā)接入

    php微信開發(fā)接入

    這篇文章主要為大家詳細介紹了php微信開發(fā)接入,通過檢驗signature對請求進行校驗,感興趣的小伙伴們可以參考一下
    2016-08-08
  • PHP常用的類封裝小結【4個工具類】

    PHP常用的類封裝小結【4個工具類】

    這篇文章主要介紹了PHP常用的類封裝,結合實例形式分析了4個常用的工具類,包括Mysql類、分頁類、縮略圖類、上傳類,需要的朋友可以參考下
    2019-06-06
  • php如何利用pecl安裝mongodb擴展詳解

    php如何利用pecl安裝mongodb擴展詳解

    這篇文章主要給大家介紹了關于php如何利用pecl安裝mongodb擴展的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧
    2019-01-01
  • 允許phpmyadmin空密碼登錄的配置方法

    允許phpmyadmin空密碼登錄的配置方法

    在Mysql修改root密碼的命令及方法一文中,我提到了使用phpmyadmin修改Mysql的root密碼的方法,但是當你將phpmyadmin登錄密碼設置為空密碼時,盡管你通過Mysql命令行方式可以以空密碼進入Mysql,但是當你重新以空密碼登錄phpmyadmin時卻無法登陸
    2011-05-05
  • php下用cookie統(tǒng)計用戶訪問網頁次數的代碼

    php下用cookie統(tǒng)計用戶訪問網頁次數的代碼

    利用cookie統(tǒng)計用戶訪問網頁次數的代碼,需要的朋友可以參考下。作為學習cookies的資料,不推薦使用。
    2010-05-05

最新評論

金沙县| 灌南县| 泾源县| 波密县| 湘潭县| 无极县| 封丘县| 新沂市| 寿光市| 襄樊市| 蓬溪县| 阳朔县| 江达县| 基隆市| 昆山市| 南平市| 柳河县| 巨野县| 长沙市| 南靖县| 太康县| 资兴市| 黄浦区| 车致| 抚顺县| 阳泉市| 庆城县| 会泽县| 内江市| 安溪县| 洛南县| 雷波县| 阜阳市| 麻栗坡县| 安陆市| 彩票| 湘西| 曲阜市| 若羌县| 大邑县| 海伦市|