php 把当前页面另存为HTML格式。。
发布网友
发布时间:2022-04-22 09:55
我来回答
共5个回答
热心网友
时间:2022-04-20 08:38
<?php
ob_start(); //打开缓冲区
echo "Oh, no no no!"; //html内容
$file = 'a.html';
$handle = fopen($file, 'w');
$ob = ob_get_contents(); //取得缓冲区内容
fwrite($handle, $ob); //保存HTML
fclose($handle);
ob_end_clean(); //清除缓冲区内容
?>
热心网友
时间:2022-04-20 09:56
<?php
#=================================
#文件名:PHPDocument1
#作者:十月GG(TaoShuChen)
#OICQ: 2578549
#创建时间:Thu Dec 02 16:05:56 CST 2010
#=================================
$url = "http://www.baidu.com";
$html_content = file_get_contents($url);
$fp = fopen(".html","a");
flock($fp, LOCK_EX) ;
fwrite($fp,$html_content);
flock($fp, LOCK_UN);
fclose($fp);
?>
热心网友
时间:2022-04-20 11:30
<?php
$f = "cachefile.html";//保存的文件名
$cache = "123";//这里是文件的内容
file_put_contents($f,$cache);//保存为HTML
?>
热心网友
时间:2022-04-20 13:22
<?
file_put_contents("文件名","内容");
?>
热心网友
时间:2022-04-20 15:30
楼主请:php生成html,原理,代码,示范,应有尽有