Jump to content

Last Digit Script


karenn1

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.