Código:
function fact($x) { if($x <= 1) { return $x; } return fact($x-1) * $x; } $num = 4; echo "El factorial de ".$num. " es igual a: ". fact($num);