Skip to content

Instantly share code, notes, and snippets.

@d30jeff
Created February 22, 2016 09:47
Show Gist options
  • Select an option

  • Save d30jeff/d30e9223a80b992cde67 to your computer and use it in GitHub Desktop.

Select an option

Save d30jeff/d30e9223a80b992cde67 to your computer and use it in GitHub Desktop.
IT 24 Hours
<?php
function dd($arg) {
die(var_dump($arg));
}
$getOddAndEven = function($number) {
if (is_numeric($number)) {
$odd = ceil($number / 2);
return [
'odd' => (int)$odd,
'even' => (int)($number - $odd + 1),
];
} else {
return false;
}
};
dd($getOddAndEven(1));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment