gespadas

Generando archivos HTML dentro de PHP

Apr 4th, 2013
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3.     function genera_html($archivo_php) {
  4.         ob_start();
  5.         require_once($archivo_php);
  6.         $html=ob_get_contents();
  7.         ob_end_clean();
  8.         return $html;
  9.     }
  10.  
  11.     $contenido = genera_html('foo.php');
  12.     file_put_contents('foo.html', $contenido);
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment