3v4l.org

run code in 300+ PHP versions simultaneously
<?php function datediffInWeeks($date1, $date2) { if($date1 > $date2) return datediffInWeeks($date2, $date1); $first = DateTime::createFromFormat('Y-m-d', $date1); $second = DateTime::createFromFormat('Y-m-d', $date2); return floor($first->diff($second)->days/7); } var_dump(datediffInWeeks('2013-02-01', '2013-04-06'));// 21 var_dump(datediffInWeeks('6/4/2013', '1/2/2013'));// 21
Output for git.master, git.master_jit
float(9) Fatal error: Uncaught Error: Call to a member function diff() on bool in /in/GtiZ9:7 Stack trace: #0 /in/GtiZ9(4): datediffInWeeks('1/2/2013', '6/4/2013') #1 /in/GtiZ9(11): datediffInWeeks('6/4/2013', '1/2/2013') #2 {main} thrown in /in/GtiZ9 on line 7
Process exited with code 255.
Output for rfc.property-hooks
float(9) Fatal error: Uncaught Error: Call to a member function diff() on false in /in/GtiZ9:7 Stack trace: #0 /in/GtiZ9(4): datediffInWeeks('1/2/2013', '6/4/2013') #1 /in/GtiZ9(11): datediffInWeeks('6/4/2013', '1/2/2013') #2 {main} thrown in /in/GtiZ9 on line 7
Process exited with code 255.

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