Sarathlal N

Check a number is even or odd in PHP

Today, I want to check weather a number is even or odd in my PHP appliation.

We can simply use an if else statement for this pourpose.

<?php
if($num % 2)
{
 echo 'Odd number';
} else{
 echo 'Even number';
}
?>

If you like shortcodes in your program, we can write it in a single line.

<?php print ($i % 2 == 0 ? Even number : Odd number); ?>

Recent Posts

  1. Automating Release Generation with GitHub Actions
  2. WP CLI Commands to Bulk Delete Entries in WordPress Database
  3. Split a Single CSV File into Multiple Files Using the Split Command - Bash
  4. Migrating code repo from BitBucket to GitHub
  5. Streamlining Development - Our Journey with Git, Bitbucket, and Jira

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.