我知道这超出了PHP的普通用途。我使用PHP为Web前端生成模板。然后,我将这些模板提供给开发团队。他们要求我们提供平面HTML文件。
有没有办法利用PHP来保存文件的html版本。我有screen-02.php到screen-62.php。我必须在浏览器中单独打开这些并将html保存为screen-02.html,screen-03.html等。如果有帮助的话,我也可以使用jQuery。
提前感谢您的帮助。
答案 0 :(得分:4)
我认为编写Shell / Batch脚本并从CLI执行PHP脚本而不是将它们用作网页是最简单的事情。
如果执行以下命令:
php /some/page.php
您可以生成stdout想要的输出,因此如果使用流水线操作,您可以轻松地执行以下操作:
php /some/page.php >> /some/page.html
或者您可以编写一个bash脚本(如果您使用的是Linux):
#!/bin/bash
for i in {1..5}
do
php /some/screen-$i.php >> /some/screen-$i.html
done
我认为这将是最简单(也是最快)的方法,不需要其他技术。
如果您无法访问PHP CLI,您可以执行类似的操作,但不是使用PHP CLI,而是可以使用wget
下载页面。
答案 1 :(得分:3)
使用php输出缓冲? http://php.net/manual/en/function.ob-start.php
或许像:<?php
ob_start();
include_once("screen-01.php");
$content = ob_get_clean();
file_put_contents($fileName, $content);
?>
你可以在循环中同时保存所有文件,但取决于你应该检查最多执行时间的数量
答案 2 :(得分:0)
最简单的方法(在我看来)是使用输出缓冲来存储然后保存PHP输出。您可以在不访问命令行服务器工具的情况下使用它。
像这样创建一个新的PHP文件:
<?php
// Start output buffering
ob_start();
// Loop through each of the individual files
for ( $j = 0; $j<= 62; $j++ ){
ob_clean(); // Flush the output buffer
$k = str_pad( $j, 2, '0' ); // Add zeros if a single-digit number
require_once('screen-' . $k . '.php'); // Pull in your PHP file
if ( ob_get_length() > 0 ){ // If it put output into the buffer, process
$content = ob_get_contents(); // Pull buffer into $content
file_put_contents( 'screen-' $k . '.html', $content ); // Place $content into the HTML file
}
}
?>
并在同一路径中从同一台服务器运行它。确保该文件夹具有写权限(CHMOD),以便它可以创建新文件。您应该会发现它使用正确的PHP输出生成所有HTML文件。
答案 3 :(得分:0)
也许是这样的:
<?php
$file = $_GET['file'];
$html = file_get_contents('http://yoururl.com/'.$file);
file_put_contents('./savedPages/'.$file.'.htm', $html);
?>
进行调用
答案 4 :(得分:0)
当您使用像Smarty这样的模板引擎时,您可以创建输出并将其保存到文件中,而无需在浏览器中显示它。
$smarty = new Smarty;
$smarty->assign("variable", $variable);
$output = $smarty->fetch("templatefile.tpl");
file_put_contents("/path/to/filename.html", $output);
Smarty文档:http://www.smarty.net/docs/en/api.fetch.tpl
另一种选择是使用PHP outputbuffer