3v4l.org

run code in 300+ PHP versions simultaneously
<?php function converteData($format, $to_format, $time, $timezone = null) { if (!$timezone) { $timezone = new DateTimeZone(date_default_timezone_get()); } $d = date_create_from_format($format, $time, $timezone); return date_format($d, $to_format); } var_dump(converteData('d/m/Y', 'd/m/Y H:i', '06/11/1992'));
Output for git.master, git.master_jit, rfc.property-hooks
string(16) "06/11/1992 12:07"

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