Skip to content

Instantly share code, notes, and snippets.

View kadet1090's full-sized avatar
⛈️
Cloudy day

Kacper Donat kadet1090

⛈️
Cloudy day
View GitHub Profile
@Sobak
Sobak / factorial.php
Created December 28, 2014 21:56
Innovative implementation of factorial. Result of boredom and too much free time.
<?php
function factorial($num) {
return eval('return '.implode(range(1, $num), '*').';');
}
// more readable form
function factorial2($num) {
$operation = implode(range(1, $num), '*');
return eval("return $operation;");
}