I found something similar to this question but it wasn't related to strings. I'm just looking for the best way to write the following code, I figured there has to be some short version I don't know about.
<ul id="top-nav">
<li <?php if($filename == "index.php"){echo ("class=\"current\"");} ?>><a href="index.php" title="Home">Home</a></li>
<li <?php if($filename == "cause.php"){echo ("class=\"current\"");} ?>><a href="cause.php" title="Cause">Cause</a></li>
<li><a href="order.php" title="Order">Order</a></li>
<li class="drop-down<?php if($filename == "grand-prize-one.php" | $filename == "grand-prize-two.php"){echo (" current");} ?>"><a href="grand-prize-one.php" title="Grand Prizes">Grand Prizes</a>
<ul>
<li><a href="grand-prize-one.php" title="Grand Prize One">Grand Prize One</a></li>
<li><a href="grand-prize-two.php" title="Grand Prize Two">Grand Prize Two</a></li>
</ul>
</li>
<li <?php if($filename == "early-bird.php"){echo ("class=\"current\"");} ?>><a href="early-bird.php" title="Early Bird">Early Bird</a></li>
<li class="drop-down<?php if($filename == "vehicles.php" || $filename == "vacations.php" || $filename == "other-prizes.php"){echo (" current");} ?>"><a href="vehicles.php" title="Electronics & more">Other Prizes</a>
<ul>
<li><a href="vehicles.php" title="Vehicles">Vehicles</a></li>
<li><a href="vacations.php" title="Vacations">Vacations</a></li>
<li><a href="other-prizes.php" title="Electronics & more">Electronics & more</a></li>
</ul>
</li>
<li <?php if($filename == "winners.php"){echo ("class=\"current\"");} ?>><a href="winners.php" title="Winners">Winners</a></li>
</ul>
Is there a shorter way to write $filename == "vehicles.php" || $filename == "vacations.php" || $filename == "other-prizes.php"? I doubt I'd ever need it to accommodate more the 5-10 possible strings.
Thank you
SOLUTION
For those who find this question, I ended up doing this:
With my main PHP
<?php
// My other code
$grandPrizes = array("grand-prize-one.php","grand-prize-two.php");
$otherPrizes = array("vehicles.php","vacations.php","other-prizes.php");
?>
My inline PHP in the li element
<?php if (in_array($filename, $grandPrizes)) {echo " current";} ?>
$a || $b). The bitwise operator will return the bits that are set in either $a or $b ($a | $b). If the returned bits do not equal zero, they will equal totrue(if you are not using the===or!==operator). – Michiel Pater Mar 23 '11 at 15:31echo (" current");=>echo " current";. – Michiel Pater Mar 23 '11 at 15:43