2012-05-24 35 views
-2

可能重複:
Hilighting The Current Navigation Tab Using URL in PHP在PHP中使用OR語句IF條件

hilighiting當前選項卡沒有PHP擴展不工作

<?php if ("index.php" || "index"==$Current) 
    {echo "selected";}else {echo "";}?> 
+1

什麼?您的主題,文本和代碼在一起毫無意義。 –

+1

你似乎也試圖在這裏提出同樣的問題,27分鐘前:[Hilighting當前導航選項卡在PHP中使用URL](http://stackoverflow.com/questions/10731052/hilighting-the-current-navigation-使用url-in-php) –

回答

0

我想你想:

<?php if ("index.php"==$Current || "index"==$Current) { 
      echo "selected"; 
     }else { 
      echo ""; 
     } 
?> 

你寫的東西沒有意義。

+1

這是合法的語法,它沒有多大意義。 – deceze

0

此代碼

if ("index.php" || "index"==$Current) 

已經返回true,因爲

if ("index.php") 

相同

if ("index.php" != "")