3v4l.org

run code in 300+ PHP versions simultaneously
<?php $x = <<<XML <data type="current observations"> <time-layout time-coordinate="local"> <start-valid-time period-name="current">2013-05-27T13:53:00-04:00</start-valid-time> </time-layout> </data> XML; $weather = new SimpleXMLElement($x); $data = $weather->xpath('/data[@type="current observations"]')[0]; $time_layout = $data->xpath('time-layout[@time-coordinate="local"]')[0]; $start_valid_time = $time_layout->xpath('start-valid-time[@period-name="current"]')[0]; echo (string)$start_valid_time;
Output for git.master, git.master_jit, rfc.property-hooks
2013-05-27T13:53:00-04: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:
41.04 ms | 401 KiB | 8 Q