Answers for "php if variable divisable by"

PHP
5

php is divisible by

if($number % 15 == 0)  {
    echo "BY3 AND 5";
} elseif ($number % 5 == 0) {
    echo "BY5";
} elseif ($number % 3 == 0) {
    echo "BY3";
}
Posted by: Guest on January-03-2020

Browse Popular Code Answers by Language