3v4l.org

run code in 300+ PHP versions simultaneously
<?php $date = '2015-01-01T00:00:00.000Z'; echo "DATE: {$date}\n\n"; echo "DateTimeZone will be ignored because date has a timezone 'Z'\n"; $dateTime = new DateTime($date, new DateTimeZone('America/Mexico_City')); echo $dateTime->format('c'). "\n\n"; echo "DateTimeZone will be ignored, date timezone is in UTC anyway!\n"; $dateTime = new DateTime($date, new DateTimeZone('UTC')); echo $dateTime->format('c'). "\n\n"; $date = '2015-01-01T00:00:00.000'; echo "DATE: {$date}\n\n"; echo "Timezone will be set to the given DateTimeZone America/Mexico_City\n"; $dateTime = new DateTime($date, new DateTimeZone('America/Mexico_City')); echo $dateTime->format('c'). "\n\n"; echo "Timezone will be set to the given DateTimeZone UTC\n"; $dateTime = new DateTime($date, new DateTimeZone('UTC')); echo $dateTime->format('c'). "\n\n"; $date = '2015-01-01T00:00:00.000 America/Mexico_City'; echo "DATE: {$date}\n\n"; echo "Timezone will set to the given timezone set in the date string America/Mexico_City\n"; $dateTime = new DateTime($date); echo $dateTime->format('c'). "\n\n";
Output for git.master, git.master_jit, rfc.property-hooks
DATE: 2015-01-01T00:00:00.000Z DateTimeZone will be ignored because date has a timezone 'Z' 2015-01-01T00:00:00+00:00 DateTimeZone will be ignored, date timezone is in UTC anyway! 2015-01-01T00:00:00+00:00 DATE: 2015-01-01T00:00:00.000 Timezone will be set to the given DateTimeZone America/Mexico_City 2015-01-01T00:00:00-06:00 Timezone will be set to the given DateTimeZone UTC 2015-01-01T00:00:00+00:00 DATE: 2015-01-01T00:00:00.000 America/Mexico_City Timezone will set to the given timezone set in the date string America/Mexico_City 2015-01-01T00:00:00-06: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:
40.81 ms | 402 KiB | 8 Q