3v4l.org

run code in 300+ PHP versions simultaneously
<?php function blah($days){ if($days < 7) return "$days days"; if($days <= 31) return (int)($days / 7) . " weeks"; if($days <= 365) return (int)($days / 30) . " months"; return (int)($days / 365) . " years"; } echo blah (5) . "\n"; echo blah (25) . "\n"; echo blah (225) . "\n"; echo blah (2225) . "\n";
Output for git.master, git.master_jit, rfc.property-hooks
5 days 3 weeks 7 months 6 years

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:
59.17 ms | 401 KiB | 8 Q