Answers for "php check if current number is odd"

PHP
4

How to check even or odd number in php

$num = 85;
if($num % 2 == 0){
echo "this is even number";

}else{
echo "this is odd number";
}
Posted by: Guest on August-24-2020

Browse Popular Code Answers by Language