我想使用PHP和if语句,我想做
if ($variable){
display html page1
}
else {
display html page2
}
我该怎么做?请注意,我不想将用户重定向到其他页面。
- EDIT-- 我可以毫不费力地使用其中一个,但是另一个文件,这样做太麻烦了。
- EDIT-- 到目前为止,这是编码:
<?PHP
include 'uc.php';
if ($UCdisplay) {
include("under_construction.php");
}
else {
include("index.html");
}
?>
我的问题是,如果我必须为每个php页面创建一个html页面,那将会非常复杂和令人困惑,所以我需要一些方法来显示完整的html页面而不是使用include(“index.html” )
答案 0 :(得分:7)
if ($variable){
include("file1.html");
}
else {
include("file2.html");
}
答案 1 :(得分:4)
最简单的方法是将HTML放在两个单独的文件中并使用include():
if ($variable) {
include('page1.html');
}
else {
include('page2.html');
}
答案 2 :(得分:4)
使用三元运算符:
include(($variable ? 'page1' : 'page2').'.html');
答案 3 :(得分:2)
如果你想避免创建“每个php页面的html页面”,那么你可以做这样的事情,直接在PHP页面中使用“真实”内容。
<?PHP
include 'uc.php';
if ($UCdisplay) {
include("under_construction.php");
exit;
}
?>
<html>
<!-- Your real content goes here -->
</html>
这个想法是这样的:如果$UCdisplay
为真,那么会显示正在构建的页面,执行将在exit;
处停止 - 不会显示任何其他内容。否则,程序流“通过”并输出页面的其余部分。每页内容都有一个PHP文件。
您可以通过将检查$UCdisplay
的代码直接移动到uc.php中来解决此问题。这将阻止您必须在每个文件的顶部写入相同的if语句。诀窍是在包含构造页面后获得代码exit
。
答案 4 :(得分:1)
对于那些仍在寻找的人:
请参阅php中的readfile();
函数。它在一个函数中读取并打印文件。
<强>定义强>
int readfile ( string $filename [, bool $use_include_path = false [, resource $context ]] )
读取文件并将其写入输出缓冲区。