设为首页 友情链接
在线留言 发表文章
加入收藏 广告联系

刺猬首页

| 专案技术 | 网络技术 | 图形图象 | 网络编程 | 网页设计 | 操作系统 | 服务器 | 技术白皮书 | 在线实验室 | 刺猬论坛 |
  | 数据库 | 设计赏析 | 存储频道 | 网络安全 | 私服架设 |  Solaris | 网站评估 | PC维护技巧 | 下载中心 | 博 客 |
专题: | Linux | java | cisco | 防病毒 | 刀片 | SOA | iscsi | ASP.NET | SQL | Oracle |
您现在的位置: IT公社 IT community >> 网络编程 >> PHP >> 教程正文 用户登录 新用户注册
专 题 栏 目
最 新 热 门
最 新 推 荐
相 关 文 章
PHP安全之:重燃你的Php…
PHP+MySQL应用中使用XOR…
PHP中使用crypt()实现用…
详细介绍:Apache+PHP+M…
建立Apache+PHP3+MySQL驱…
使用C#开发SmartPhone程…
PHP自动更新新闻DIY
PHP中文函数连载(一)
PHP中文函数连载(二)
用PHP发送有附件的电子邮…
  给PHPLIB模版加两个函数,解决模版文件内图片、CSS和JS包括路径问题           
给PHPLIB模版加两个函数,解决模版文件内图片、CSS和JS包括路径问题
 

加了两个函数,用法和原来的一样,具体看代码里面说明。
只是在声明的时候要指定图片的路径,默认为当前目录,也就是PHP文件所在目录。
注意的是图片目录要相对于模版文件目录的,模版文件和图片文件不能在同一级目录下。
<?php

/*

* Session Management for PHP3

*

* (C) Copyright 1999-2000 NetUSE GmbH

*                    Kristian Koehntopp

*

* $Id: template.inc,v 1.5 2000/07/12 18:22:35 kk Exp $

*

*/

class Template {

  var $classname = "Template";

  /* if set, echo assignments */

  var $debug     = false;

  /* $file[handle] = "filename"; */

  var $file  = array();


  /* relative filenames are relative to this pathname */

  var $root   = "";

  /* $varkeys[key] = "key"; $varvals[key] = "value"; */

  var $varkeys = array();

  var $varvals = array();

  /* "remove"  => remove undefined variables

   * "comment" => replace undefined variables with comments

   * "keep"    => keep undefined variables

   */

  var $unknowns = "remove";

  /* "yes" => halt, "report" => report error, continue, "no" => ignore error quietly */

  var $halt_on_error  = "yes";

  /* last error message is retained here */

  var $last_error     = "";

  var $path = ".";

  /*********************************/

  /* public: Constructor.

   * root:     template directory.

   * unknowns: how to handle unknown variables.

   */

  function Template($root = ".", $path = ".", $unknowns = "remove") {

    $this->set_root($root);

    $this->set_path($path);

    $this->set_unknowns($unknowns);

  }

  /* 设置图片路径

   */

  function set_path($path){

    if($path == ".") return true;

    if (!is_dir($this->root . "/" . $path)) {

      $this->halt("set_path: $path is not a directory.");

      return false;

    }

    $this->path = $path;

    return true;

  }

  /* public: setroot(pathname $root)

   * root:   new template directory.

   */ 

  function set_root($root) {

    if (!is_dir($root)) {

      $this->halt("set_root: $root is not a directory.");

      return false;

    }

    $this->root = $root;

    return true;

  }

  /* public: set_unknowns(enum $unknowns)

   * unknowns: "remove", "comment", "keep"

   *

   */

  function set_unknowns($unknowns = "keep") {

    $this->unknowns = $unknowns;

  }

  /* public: set_file(array $filelist)

   * filelist: array of handle, filename pairs.

   *

   * public: set_file(string $handle, string $filename)

   * handle: handle for a filename,

   * filename: name of template file

   */

  function set_file($handle, $filename = "") {

    if (!is_array($handle)) {

      if ($filename == "") {

        $this->halt("set_file: For handle $handle filename is empty.");

        return false;

      }

      $this->file[$handle] = $this->filename($filename);

    } else {

      reset($handle);

      while(list($h, $f) = each($handle)) {

        $this->file[$h] = $this->filename($f);

      }

    }

  }


  /* public: set_block(string $parent, string $handle, string $name = "")

   * extract the template $handle from $parent,

   * place variable {$name} instead.

   */

  function set_block($parent, $handle, $name = "") {

    if (!$this->loadfile($parent)) {

      $this->halt("subst: unable to load $parent.");

      return false;

    }

    if ($name == "")

      $name = $handle;

    $str = $this->get_var($parent);

    $reg = "/<!--s+BEGIN $handles+-->(.*)\ns*<!--s+END $handles+-->/sm";

    preg_match_all($reg, $str, $m);

    $str = preg_replace($reg, "{" . "$name}", $str);

    $this->set_var($handle, $m[1][0]);

    $this->set_var($parent, $str);

    $this->set_var($name);

  }
 

  /* public: set_var(array $values)

   * values: array of variable name, value pairs.

   *

   * public: set_var(string $varname, string $value)

   * varname: name of a variable that is to be defined

   * value:   value of that variable

   */

  function set_var($varname, $value = "") {

    if (!is_array($varname)) {

      if (!empty($varname))

        if ($this->debug) print "scalar: set *$varname* to *$value*<br>\n";

        $this->varkeys[$varname] = "/".$this->varname($varname)."/";

        $this->varvals[$varname] = $value;

    } else {

      reset($varname);

      while(list($k, $v) = each($varname)) {

        if (!empty($k))

          if ($this->debug) print "array: set *$k* to *$v*<br>\n";

          $this->varkeys[$k] = "/".$this->varname($k)."/";

          $this->varvals[$k] = $v;

      }

    }

  }

  /* public: subst(string $handle)

   * handle: handle of template where variables are to be substituted.

   */

  function subst($handle) {

    if (!$this->loadfile($handle)) {

      $this->halt("subst: unable to load $handle.");

      return false;

    }

    $str = $this->get_var($handle);

    $str = @preg_replace($this->varkeys, $this->varvals, $str);

    return $str;

  }

  /* public: psubst(string $handle)

   * handle: handle of template where variables are to be substituted.

   */

  function psubst($handle) {

    print $this->subst($handle);

   

    return false;

  }

  /* public: parse(string $target, string $handle, boolean append)

   * public: parse(string $target, array  $handle, boolean append)

   * target: handle of variable to generate

   * handle: handle of template to substitute

   * append: append to target handle

   */

  function parse($target, $handle, $append = false) {

    if (!is_array($handle)) {

      $str = $this->subst($handle);

      if ($append) {

        $this->set_var($target, $this->get_var($target) . $str);

      } else {

        $this->set_var($target, $str);

      }

    } else {

      reset($handle);

      while(list($i, $h) = each($handle)) {

        $str = $this->subst($h);

        $this->set_var($target, $str);

      }

    }
 &nbs

[1] [2] 下一页  

频道声明:本频道的文章除部分特别声明禁止转载的专稿外,可以自由转载.但请务必注明出出处和原始作者 文章版权归本频道与文章作者所有.对于被频道转载文章的个人和网站,我们表示深深的谢意。

原始作者:佚名 录入时间:2006-11-9
信息来源:不详 投稿信箱:itqoo@126.com
教程录入:admin    责任编辑:admin 
  • 上一个教程:

  • 下一个教程:
  • 【字体: 】【发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
      网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
    - 关于我们 - 合作伙伴 - 友情链接 - 广告刊登 - 投稿热线 - 在线留言版权声明联系方式 -
    IT公社版权所有 粤ICP备05127012号
    Copyrigh@2005-2006 itqoo.com.Inc All Rights Reserved  推荐分辨率 1024*768
    联系站长:E-Mail:itqoo@126.com     MSN:urchincc@hotmail.com    QQ:点击这里给我发消息
    特别感谢:亿太网络提供空间支持