Skip to content

Instantly share code, notes, and snippets.

View mheijkoop's full-sized avatar

Marlies Heijkoop mheijkoop

  • Groningen, The Netherlands
View GitHub Profile
@mheijkoop
mheijkoop / phpEvenCheck.php
Created April 27, 2012 13:26 — forked from josephwegner/phpEvenCheck.php
Is Number Even
<?
// this is more the PHP-way
// requires the bcmath extension so make sure your shared hosting provider has it.
is_even($argv[1]);
function is_even($number) {
$oldnumber = $number;
goto a;
result: