Perad Posted January 25, 2008 Share Posted January 25, 2008 The question I posed above. How do I do it? Link to comment https://forums.phpfreaks.com/topic/87810-solved-how-can-i-check-is-a-number-is-divisible-by-3/ Share on other sites More sharing options...
PHP Monkeh Posted January 25, 2008 Share Posted January 25, 2008 Everything is divisible by 3. But I'm going to assume you mean does it have a remainder once it's divided by 3, which is done using % <?php $number = 6; if(($number % 3) == 0) { // There was no remainder } ?> Link to comment https://forums.phpfreaks.com/topic/87810-solved-how-can-i-check-is-a-number-is-divisible-by-3/#findComment-449160 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.