使用file_put_contents将当前的php页面保存为服务器的html

时间:2013-06-04 16:20:55

标签: php javascript html save password-protection

我有这个代码用于保存当前页面输出到我服务器上的目录它现在工作正常,但我想在该页面添加安全密码。保存页面的安全方法是什么?

date_default_timezone_set('Europe/Istanbul');
$path = "backup/";
$date = date('d', time());
$number= $date;
$name = $number;
$filetype = ".html";
file_put_contents(html_entity_decode($path.$name.$filetype), ob_get_contents());

谢谢。

0 个答案:

没有答案