<?php
ob_start();include ("price.php");$content = ob_get_contents();//取得php页面输出的全部内容$fp = fopen("./price.htm", "w");fwrite($fp, $content);fclose($fp);
?>