首页 > 开发 > PHP > 正文

php 静态文件生成类(自家用)

2024-05-04 23:04:24
字体:
来源:转载
供稿:网友

<?php
class createhtml
{
 function mkdir( $prefix= 'article' )
 {
  $y = date('y');
  $m = date('m');
  $d = date('d');
  $p=directory_separator;
  $filepath='article'.$p.$y.$p.$m.$p.$d;
  $a=explode($p,$filepath);
  foreach ( $a as $dir)
  {
   $path.=$dir.$p;
   if(!is_dir($path))
   {
    //echo '没有这个目录'.$path;
    mkdir($path,0755);
   }
  }
  return $filepath.$p;  
 }
 function start()
 {
  ob_start();
 }
 function end()
 {
  $info     = ob_get_contents();
  $fileid   = '12345';
  $postfix  = '.html';
  $path     = $this->mkdir($prefix= 'article');
  $filename = time().'_'.$fileid.$postfix;
  $file=fopen($path.$filename,'w+');
  fwrite($file,$info);
  fclose($file);
  ob_end_flush();
 }
}
?>
<?php
$s=new createhtml();
$s->start();
?>
<html>
<body>
asdfasdfasdfasdfasdfasdfasdfasdfasdf<br>
adfasdfasdf<br>
</body>>
</html>
<?php
$s->end();
?>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表