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 Link to comment https://forums.phpfreaks.com/topic/59632-last-digit-script/ 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. Link to comment https://forums.phpfreaks.com/topic/59632-last-digit-script/#findComment-296297 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 Link to comment https://forums.phpfreaks.com/topic/59632-last-digit-script/#findComment-296364 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.