• 技术文章 >php教程 >php手册

    在*.htm或*.html文件中放计数器和日历

    2016-06-13 10:24:40原创881
    一般,自己做的文本计数器或者日历要放在*.PHP文件中,如果一定要用htm或html做文件扩展名(例如index.html),还能放计数器或者日历吗?回答是肯定的。方法是先用PHP的图形输出功能画出所要的图形,再利用HTTP标头信息使html文件能把这个PHP文件当作一个图形文件来处理,在*.htm或*.html文件中放计数器或日历变得和放置一个图片文件一样简单!下面是计数器图形文件count.php和日历文件date.php的PHP源代码:

    ---------------文件count.php(计数器)----------
    if(!file_exists("count.txt"))
    exec("echo 0 > count.txt");
    $fp = fopen("count.txt", "r+");

    $FileSize = filesize("count.txt");
    $Count = fgets($fp, $FileSize + 1);

    $Count += 1;
    fseek($fp, 0);
    fputs($fp, $Count);
    fclose($fp);

    $strCount = strval($Count); //获得的记数转成字符串
    $strCount = Chop($strCount);
    $CountLen = strlen($strCount);

    for($i = 0; $i < 8 - $CountLen; $i ++) //计数器定为8位,不足则补零
    $strCount = "0".$strCount;

    //创建图象
    $img = imagecreate(90, 26);

    //匹配颜色
    $black = imagecolorallocate($img, 0, 0, 0);
    $green = imagecolorallocate($img, 0, 255, 0);

    $fgray = imagecolorallocate($img, 180, 180, 180);
    $dgray = imagecolorallocate($img, 130, 130, 130);
    $gray = imagecolorallocate($img, 160, 160, 160);

    //绘制边框
    imagerectangle($img, 0, 0, 89, 25, $fgray);
    imagerectangle($img, 1, 1, 88, 24, $dgray);
    imagerectangle($img, 2, 2, 87, 23, $gray);

    //输出记数
    imagestring($img, 4, 13, 5, $strCount, $green);

    //输出图片
    header("Content-type:image/png");
    imageinterlace($img, 1);
    imagepng($img);
    ?>


    ---------------文件date.php(日历)----------------------------
    //创建图象
    $img = imagecreate(132, 26);

    //匹配颜色
    $black = imagecolorallocate($img, 0, 0, 0);
    $green = imagecolorallocate($img, 0, 255, 0);
    $fgray = imagecolorallocate($img, 180, 180, 180);
    $dgray = imagecolorallocate($img, 130, 130, 130);
    $gray = imagecolorallocate($img, 160, 160, 160);

    //绘制边框
    imagerectangle($img, 0, 0, 131, 25, $fgray);
    imagerectangle($img, 1, 1, 130, 24, $dgray);
    imagerectangle($img, 2, 2, 129, 23, $gray);

    //输出日期
    imagestring($img, 4, 11, 5, date("Y.m.d.D"), $green);

    //输出图片
    header("Content-type:image/png");
    imageinterlace($img, 1);
    imagepng($img);
    ?>

    只要把这两个文件当作图形文件插入到HTML文件的任何地方,就成为计数器和日历了,可以到下列地址看看效果:
    http://youziyun.oso.com.cn
    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    上一篇:PHP里OR的用法举例 下一篇:想学php5的来看看
    千万级数据并发解决方案

    相关文章推荐

    • 第十四节 命名空间 [14]• 第十五节--Zend引擎的发展 -- Classes and Objects in PHP5 [15]• 一个odbc连mssql分页的类_php基础• 基于php实现七牛抓取远程图片• php程序总是提示验证码输入有误解决方案
    1/1

    PHP中文网