php文件能不能转为htm?

WBOY
Release: 2016-06-23 13:57:02
Original
1259 people have browsed it

一个做好参数的php文件,想得到最终显示的htm文件,在后台怎么可以做到?


回复讨论(解决方案)

把 php 程序输出的结果,保存到文件

把 php 程序输出的结果,保存到文件



在后台怎么做呢?能不能详细说一下,谢谢

比如一个php

    <?php 		include 'config.php'; 	?> <title>            <?php echo $title;?>        </title>
Copy after login


还包含了其他php文件,$title在其它文件里设置的,还有另外别的包含文件

想把最后浏览器的htm文件弄出来,该怎么办?

ob_start('html');
function html($s) {
  file_put_contents(basename($_SERVER['PHP_SELF']) . '.htm', $s);
}
//......

使用模板引擎

LZ指的“显示”是什么意思?
如果说客户端显示代码为html格式,那php单纯用echo就行了
如果说客户端看到的url是html扩展名,那可以用伪静态或者在apache直接指定用php解析*.html

LZ指的“显示”是什么意思?
如果说客户端显示代码为html格式,那php单纯用echo就行了
如果说客户端看到的url是html扩展名,那可以用伪静态或者在apache直接指定用php解析*.html



比如我现在有个a.php?p1=a&p2=b,我希望生成一个htm文件,显示的就是前面那个带参数的php文件显示的内容

就是希望得到一个跟php一样浏览器效果的htm,希望有做过的指点一下

版主都已经说了
你查这3个函数 ob_start ob_get_contents file_put_contents

echo file_get_contents('http://www.domain.com/index.php?action=xxx'); // 直接获取生成的html

调用a.php?p1=a&p2=b的时候生成htm文件,之后可以直接用htm访问页面 ->见#4
调用a.php?p1=a&p2=b直接显示htm文件的页面,直接echo

你是不是想说用伪静态啊?

rewrite ^(.*)/index_(\d+)_(\d+)_(\d+).html$  $1/index.php?val1=$2&val2=$3&val3=$4   last;

这个主要是把/index.php?val1=121&val2=222&val3=232 转变成/index_121_222_232.html形式

你用 IE (Chrome) 打开 php 做的站点,想不看到 html 都不行。

RewriteEngine on
AddType application/x-httpd-php .html .htm

使用
.htaccess ,用上面的语句 把所有的 php改成静态后缀就可以了

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template