明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

怎么用PHP來給頁面做導(dǎo)航欄

[摘要]怎樣用PHP來給網(wǎng)頁做導(dǎo)航欄 原作:Brad Bulger 譯文:李平 譯者注:本文原名《Site Navigation with PHP》,原文詳述了如何用PHP編程來做出效果理想的網(wǎng)頁導(dǎo)航條,...
怎樣用PHP來給網(wǎng)頁做導(dǎo)航欄
原作:Brad Bulger  
譯文:李平
譯者注:本文原名《Site Navigation with PHP》,原文詳述了如何用PHP編程來做出效果理想的網(wǎng)頁導(dǎo)航條,本文只選譯了其中的部分文章,所選取的部分是文章精髓之所在,只要大家能弄懂這部分內(nèi)容就可以用同樣的原理、思想做出我們需要的效果來,希望給讀者能起到拋磚引玉的作用。本文只需要讀者具備PHP、HTML的初步知識(shí)就可以基本讀懂了。
  
譯 文:如大家所知PHP對(duì)于用數(shù)據(jù)庫驅(qū)動(dòng)的網(wǎng)站(making database-driven sites)來講可謂功能強(qiáng)大,可是我們是否可以用它來做點(diǎn)其他事情呢?PHP給了我們所有我們期望的工具:for與while的循環(huán)結(jié)構(gòu)、數(shù)學(xué)運(yùn)算等等,還可以通過兩種方式來引用文件:直接引用或向服務(wù)器提出申請(qǐng)。其實(shí)何止這些,讓我們來看一個(gè)如何用它來做導(dǎo)航條的例子:
完整的原代碼:
<!-- This '<?' is how you indicate the start of a block of PHP code, -->
<?php
# and this '#' makes this a PHP comment.  
  
$full_path = getenv("REQUEST_URI");
  
$root = dirname($full_path);
$page_file = basename($full_path);
$page_num = substr($page_file
    , strrpos($page_file, "_") + 1
    , strpos($page_file, ".html") - (strrpos($page_file, "_") + 1)
);

$partial_path = substr($page_file, 0, strrpos($page_file, "_"));
  
$prev_page_file = $partial_path . "_" . (string)($page_num-1) . ".html";
$next_page_file = $partial_path . "_" . (string)($page_num+1) . ".html";
  
$prev_exists = file_exists($prev_page_file);
$next_exists = file_exists($next_page_file);
  
if ($prev_exists)
{
    print "<a href="$root/$prev_page_file">previous</a>";
    if ($next_exists)
    {
        print " ";
    }
}
if ($next_exists)
{
    print "<a href="$root/$next_page_file">next</a>";
}
  
?>//原程序完。

代碼分析:  
OK! 前面做了足夠的鋪墊工作,現(xiàn)在讓我們來看看如何來用PHP來完成這項(xiàng)工作:
  
<!-- This '<?' is how you indicate the start of a block of PHP code, -->
<?php
# and this '#' makes this a PHP comment.  
  
$full_path = getenv("REQUEST_URI");
  
$root = dirname($full_path);
$page_file = basename($full_path);
  
/*
PHP函數(shù)getenv()用來取得環(huán)境變量的值,REQUEST_URI的值是緊跟在主機(jī)名后的部分URL,假如URL
是http://www.yourmom.com/dinner/tuna_1.html, 那它的值就為/dinner/tuna_1.html. 現(xiàn)在我們將得到的那部分URL放在變量$full_path中,再用dirname()函數(shù)來從URL中抓取文件目錄,用basename()函數(shù)取得文件名,用上面的例子來講dirname()返回值:/dinner/;basename()返回:tuna_1.html。接下來的部分相對(duì)有些技巧,假如我們的文件名以story_x的格式命名,其中x代表頁碼,我們需要從中將我們使用的頁碼抽出來。當(dāng)然文件名不一定只有一位數(shù)字的模式或只有一個(gè)下劃線,它可以是tuna_2.html,同樣它還可以叫做tuna_234.html甚至是candy_apple_3.html,而我們真正想要的就是位于最后一個(gè)“_”和“.html”之間的東東。可采用如下方法:
*/
$page_num = substr($page_file
    , strrpos($page_file, "_") + 1
    , strpos($page_file, ".html") - (strrpos($page_file, "_") + 1)
);
/*
substr($string, $start,[$length] )函數(shù)給了我們字符串$string中從$start開始、長(zhǎng)為$length或到末尾的字串(方括號(hào)中的參數(shù)是可選項(xiàng),如果省略$length,substr就會(huì)返回給我們從$start開始直到字符串末尾的字符串),正如每一個(gè)優(yōu)秀的C程序員告訴你的那樣,代表字符串開始的位置開始的數(shù)字是“0”而不是“1”。
函數(shù)strrpos($string, $what)告訴我們字符串$what在變量$string中最后一次出現(xiàn)的位置,我們可以通過它找出文件名中最后一個(gè)下劃線的位置在哪,同理,接著的strpos($string, $what)告訴我們“.html”首次出現(xiàn)的位置。我們通過運(yùn)用這三個(gè)函數(shù)取得在最后一個(gè)“_”和“.html”之間的數(shù)字(代碼中的strpos()+1代表越過“_”自己)。
剩下的部分很簡(jiǎn)單,首先為上頁和下頁構(gòu)造文件名:
*/
$partial_path = substr($page_file, 0, strrpos($page_file, "_"));
  
$prev_page_file = $partial_path . "_" . (string)($page_num-1) . ".html";
$next_page_file = $partial_path . "_" . (string)($page_num+1) . ".html";
  
/*
(string)($page_num+1)將數(shù)學(xué)運(yùn)算$page_num+1的結(jié)果轉(zhuǎn)化為字符串類型,這樣就可以用來與其他字串最終連接成為我們需要的文件名。
*/
/*
現(xiàn)在檢查文件是否存在(這段代碼假設(shè)所有的文件都位于同樣的目錄下),并最終給出構(gòu)成頁面導(dǎo)航欄的HTML代碼。
*/
$prev_exists = file_exists($prev_page_file);
$next_exists = file_exists($next_page_file);
  
if ($prev_exists)
{
    print "<a href="$root/$prev_page_file">previous</a>";
    if ($next_exists)
    {
        print " ";
    }
}
if ($next_exists)
{
    print "<a href="$root/$next_page_file">next</a>";
}
  
?>
(全文完)  

【本文版權(quán)歸作者與奧索網(wǎng)共同擁有,如需轉(zhuǎn)載,請(qǐng)注明作者及出處】