define('CACHE_FILE', '111.html');function callback($buffer) {  file_put_contents(CACHE_FILE, $buffer, FILE_APPEND);  return $buffer; //不需显示页面内容就 return '';}file_put_contents(CACHE_FILE, '');ob_start("callback", PHP_OUTPUT_HANDLER_START);
jingtai.php
<?php echo'<a href="123.php"></a>'; ?>先只生成了 jingtai.html
<a href="123.php"></a>怎么把123.php改成123.html呢