当前位置:首页 > PHP教程 > php类库 > 列表

PHP静态文件生成类

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-10 10:22:11 浏览: 评论:0 
  1. <?php 
  2. class CreateHtml 
  3. function mkdir$prefix'article' ) 
  4. $y = date('Y'); 
  5. $m = date('m'); 
  6. $d = date('d'); 
  7. $p=DIRECTORY_SEPARATOR; 
  8. $filePath='article'.$p.$y.$p.$m.$p.$d
  9. $a=explode($p,$filePath); 
  10. foreach ( $a as $dir
  11. $path.=$dir.$p
  12. if(!is_dir($path)) 
  13. //echo '没有这个目录'.$path; 
  14. mkdir($path,0755); 
  15. return $filePath.$p
  16. function start() 
  17. ob_start(); 
  18. function end() 
  19. $info = ob_get_contents(); 
  20. $fileId = '12345'
  21. $postfix = '.html'
  22. $path = $this->mkdir($prefix'article'); 
  23. $fileName = time().'_'.$fileId.$postfix
  24. $file=fopen($path.$fileName,'w '); 
  25. fwrite($file,$info); 
  26. fclose($file); 
  27. ob_end_flush(); 
  28. ?> 
  29. <?php 
  30. $s=new CreateHtml(); 
  31. $s->start(); 
  32. ?> 
  33. <html> 
  34. <body> 
  35. asdfasdfasdfasdfasdfasdfasdfasdfasdf<br> 
  36. adfasdfasdf<br> 
  37. </body>> 
  38. </html> 
  39. <?php 
  40. $s->end(); 
  41. ?> 

Tags: PHP 静态 文件

分享到: