php利用缓存生成html等文件
<?php
ob_start();
?>
<iframe src="https://m.toutiao.com/i6592753338712850958/">8</iframe>
<div>地地地</div>
<?php
sleep(2);
$getinfo = ob_get_contents();
file_put_contents($static_file, $getinfo);
echo $static_file;
?>