実行中のスクリプトのタイトルを動的に作成する必要があります。タイトルは、現在使用中のファイルに依存する必要があります。
私の構造スクリプトは次のとおりです。
@require_once"bd.php";
@require_once"Funciones/functions.php";
include head.php;
include body.php;
include footer.php;
私のタイトル関数コードは head.php から呼び出されます
これは私の関数ですが、動作しません常に空白の結果を返します:s
function get_title(){
$indexurl = "index.php";
$threadurl = "post.php";
$searchurl = "search.php";
$registerurl = "register.php";
$query = $_SERVER['PHP_SELF'];
$path = pathinfo( $query );
$url = $path['basename']; //This returns the php file that is being used
if(strpos($url,$indexurl)) {
$title = "My home title";
}
if(strpos($url,$threadurl)) {
$title = "My post title";
}
if(strpos($url,$searchurl)) {
$title = "My search title";
}
if(strpos($url,$registerurl)) {
$title = "My register page title";
}
return $title;
}
私は関数を呼び出します:
<title><? echo get_title(); ?></title>