我有一个index.php页面,它是主页面。所有页面都通过GET变量动态包含在index.php中。
这是uFlex类的一部分..这将根据包含的文件的文件名生成标题,我不喜欢这种方式..
<?php
$page = @$_GET['page'];
$page = !$page ? "home" : $page;
$ext = ".php";
$page_inc = "page/" . str_replace("-", "_", $page) . $ext;
//Page not found
if(!file_exists($page_inc)) send404();
if(!$page_title){
$page_title = ucfirst($page);
}
?>
// HTML CODE <head>, <title>, ecc
// And then
<?php include($page_inc); ?>
示例:我查看http://sitename.ext/?page=user&id=nickname
它将包含user.php
,因为包含是在<title>
标记之后生成的。我无法根据php变量设置标题。
在user.php
内我有$user['username']
,我想将此var设置为标题..
我需要重写一种新方法来包含可能包含文件的文件。
建议?谢谢!
答案 0 :(得分:1)
您应该考虑使用require,然后调用函数来生成数据。
<?php require($page_inc); ?>
<html>
<title><?php echo $page_title; ?></title>
....
<div><?php echo $page_content?></div>
这非常类似于wordpress所做的,尽管是非常高的水平。