karenn1 Posted July 12, 2007 Share Posted July 12, 2007 I have a little script that determines if a menu item gets displayed or not: if ($number == "100" || $number == "200" || $number == "300" || $number == "400" || $number == "500" || $number == "600" || $number == "900") print "style='display: none'"; Instead of manually adding "1000", "1100", "1200", etc, is there not a way that I can tell php to check if the number ends in a "0" then do the function above? I have no clue on how to code it. Any help would be appreciated. Thanks!! Karen Quote Link to comment Share on other sites More sharing options...
Asday Posted July 12, 2007 Share Posted July 12, 2007 I have a little script that determines if a menu item gets displayed or not: if ($number == "100" || $number == "200" || $number == "300" || $number == "400" || $number == "500" || $number == "600" || $number == "900") print "style='display: none'"; Instead of manually adding "1000", "1100", "1200", etc, is there not a way that I can tell php to check if the number ends in a "0" then do the function above? I have no clue on how to code it. Any help would be appreciated. Thanks!! Karen Something like if strpos($number(strlen($number) - 1)) == 0 { //code } else { //code } I think. Quote Link to comment Share on other sites More sharing options...
cmgmyr Posted July 12, 2007 Share Posted July 12, 2007 This is a little easier: <?php $num = 120; if($num % 10 == 0){ echo "Do something"; }else{ echo "Don't do something"; } ?> ...then change $num between 121-129 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.