Jump to content

[SOLVED] How can I check is a number is divisible by 3


Perad

Recommended Posts

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

}

?>

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.