php if divisible by 30

Solutions on MaxInterview for php if divisible by 30 by the best coders in the world

showing results for - "php if divisible by 30"
Yannic
02 Oct 2016
1if ($variable % 30 == 0) {
2    echo 'This number is divisible by 30.';
3};