1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <?php
$h1 = 'Bonjour tout le monde';
ob_start();
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
</script>
</head>
<body>
<h1><?php echo $h1 ?></h1>
</body>
</html>
<?php
//--- récupération de la page et enregistrement dans un fichier --------------
$fichier = 'test.txt';
file_put_contents($fichier, ob_get_contents());
//--- affichage de la page ---------------------------------------------------
ob_end_flush();
?> |
Partager