Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 248 Bytes

php.md

File metadata and controls

17 lines (14 loc) · 248 Bytes

PHP

The function way

Contributed by Eric Cheng

<?php declare(strict_types=1);
function isEven(int $x) {
    if ($x % 2 == 0) {
        return true;
    } else {
        return false;
    }
}
?>