我有一个带有“默认”元标签的index.php页面,带有我调用的开关函数,例如single_page.php,它看起来有点像www.something.com/?page=single_page
。
如何用single_page.php中的元标记覆盖索引页中的元标签
$conlibrary="play/pages/" ;
IF(!isset($_GET[ page ])){
$page = deafault ;
} ELSE {
$page = $_GET[ page ];
$findme = & ;
$pos = strpos($page, $findme);
IF ($pos ===true) {
$data = explode("&", $data);
$dest =$conlibrary."/".$data[0].".php";
IF (file_exists($dest)) {
$page = $_GET[ page ];
} ELSE {
$page = 404 ;
}
} ELSE {
$dest =$conlibrary."/".$page.".php";
IF (file_exists($dest)) {
$page = $_GET[ page ];
} ELSE {
$page = 404 ;
}
}
}
include($conlibrary . $page .".php");