Answers for "php check if divisible by 2"

PHP
5

check if divisible php

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

Code answers related to "php check if divisible by 2"

Browse Popular Code Answers by Language