3v4l.org

run code in 300+ PHP versions simultaneously
<?php function dateIntervalToSeconds($dateInterval) { $reference = new DateTimeImmutable; $endTime = $reference->add($dateInterval); return $endTime->getTimestamp() - $reference->getTimestamp(); } $duration = '1h1m1s'; $interval = new DateInterval('PT' . strtoupper($duration)); echo $duration, ' is ', dateIntervalToSeconds($interval), ' seconds';
Output for git.master_jit, git.master, rfc.property-hooks
1h1m1s is 3661 seconds

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:
127.54 ms | 405 KiB | 5 Q