3v4l.org

run code in 300+ PHP versions simultaneously
<?php $d1 = new \Datetime('2017-5-1'); $d2 = new \Datetime('2017-7-1'); $diff = $d1->diff($d2); var_dump($diff); echo sprintf('%d Month\\s', $diff->m) . PHP_EOL; echo sprintf('...But %d Day\\s', $diff->d) . PHP_EOL;
Output for git.master, git.master_jit, rfc.property-hooks
object(DateInterval)#3 (10) { ["y"]=> int(0) ["m"]=> int(2) ["d"]=> int(0) ["h"]=> int(0) ["i"]=> int(0) ["s"]=> int(0) ["f"]=> float(0) ["invert"]=> int(0) ["days"]=> int(61) ["from_string"]=> bool(false) } 2 Month\s ...But 0 Day\s

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