下面代码可完美地下载当前PHP网页的.html
文件
$filename = 'filename.html';
header('Content-disposition: inline; filename=' . $filename);
header('Content-type: text/html');
是否有任何方法可以将文件保存在某些特定位置,而不是下载响应。
ex:如果我想将此filename.html
文件保存在位置/export/www/html/myproject/var/htmlpages
在下面的逻辑上也尝试过替代:
ob_start();
file_put_contents('myfile.html', ob_get_contents());
但它生成空文件
使用fopen()在特定目录中写文件,而不是下载响应,例如:
<?php
$fp = fopen('data.txt', 'w'); // here you can pass the directory path + filename
fwrite($fp, '1');
fwrite($fp, '23');
fclose($fp);
?>
fwrite()doc