3v4l.org

run code in 300+ PHP versions simultaneously
<?php class GreatestCommonDivisor { /** * Get the divisor of a given number. * * @param int $num * The number. * * @return int[] * The divisors of the number. */ private function factors(int $num): array { return array_filter( range(1, $num), function (int $i) use ($num) { return 0 === $num % $i; } ); } /** * Get the greatest common divisor. * * @param int ...$x * The numbers. * * @return int * The greatest common divisor. */ public function gcd(...$x): int { $x = array_map([$this, 'factors'], $x); $intersect = array_intersect(...$x); return end($intersect); } } trait gcdTrait { /** * Get the greatest common divisor. * * @param int ...$x * The first number. * * @return int * The greatest common divisor. */ function gcd(...$x): int { return (new GreatestCommonDivisor())->gcd(...$x); } } class customClass { use gcdTrait; } $foo = new customClass(); echo $foo->gcd(10, 20, 45);
Output for git.master_jit, git.master, rfc.property-hooks
5

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
61.75 ms | 401 KiB | 8 Q