<?php
error_reporting(-1);
$text = "<html><head></head><body><h1>Hello</h1></body></html>" ;
$fp = fopen("file.html", "w");
 
// записываем в файл текст
fwrite($fp, $text);
 
// закрываем
fclose($fp);
?>