3v4l.org

run code in 300+ PHP versions simultaneously
<?php function decimal_to_time($decimal) { $hours = floor($decimal / 60); $minutes = floor($decimal % 60); $seconds = $decimal - (int)$decimal; $seconds = round($seconds * 60); return str_pad($hours, 2, "0", STR_PAD_LEFT) . ":" . str_pad($minutes, 2, "0", STR_PAD_LEFT) . ":" . str_pad($seconds, 2, "0", STR_PAD_LEFT); } echo decimal_to_time(1028);
Output for git.master, git.master_jit, rfc.property-hooks
17:08:00

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