3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* Sample Dates : 1981-11-03, 2013-09-04 Expected Result : Difference : 31 years, 10 months, 1 days - See more at: */ echo date_create('1981-11-03'); class Calculate { public function diff_cal($datetime1, $datetime2) { $interval = date_diff($datetime1, $datetime2); return $interval; } } $cal = New Calculate; $cal->diff_cal('1981-11-03','2013-09-04');
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Object of class DateTime could not be converted to string in /in/d78AJ:6 Stack trace: #0 {main} thrown in /in/d78AJ on line 6
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:
39.91 ms | 401 KiB | 8 Q