Home  >  Article  >  Backend Development  >  php生成shtml类用法实例_PHP

php生成shtml类用法实例_PHP

WBOY
WBOYOriginal
2016-05-31 18:15:37668browse

本文实例讲述了php生成shtml类及其用法。分享给大家供大家参考。具体如下:

代码如下:

 class Shtml{
  var $DataSource;        //array 数组
  var $Templet;           //string 字符串
  var $FileName;
  
  //绑定数据源
  function BindData($arr){
   $this->DataSource = $arr;
  }
  
  function Create(){
  //只谈思路:
   $tmp = $this->Templet;
   foreach($this->DataSource as $key=>$value){
  //替换模板字符串中 的字符串
    $tmp = str_replace('',$value,$tmp);
   }
  //生成文件,存盘。
   $fp = fopen($this->FileName,'w');
   if (fwrite ($fp,$tmp)){
    fclose ($fp);
   }else {
    fclose ($fp);
   } 
  }
 }
 
 //用法如下:
 $arr = array();
 $arr["title"] = "这里是标题";
 $arr["content"] = "这里是内容";
 $obj = new Shtml;
 $obj->FileName="xxx.htm";
 $obj->Templet="标题:内容:";
 $obj->BindData($arr);
 //一切OK,万事达吉
 $obj->Create();
?>

希望本文所述对大家的PHP程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn