3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = <<<XML <programme channel="cnn.info" start="20131027060000" stop="20131027061500"> <title>hello CONTENT</title> <premiere/></programme> XML; $xml = simplexml_load_string($string); $start = $xml->@attributes->start; $stop = $xml->@attributes->stop; $title = $xml->title; echo "Title: " . $title . "\n"; echo "Time:left" . ($stop-$start);
Output for 5.4.0 - 5.4.21
Parse error: syntax error, unexpected '@', expecting identifier (T_STRING) or variable (T_VARIABLE) or '{' or '$' in /in/nerWJ on line 10
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected '@', expecting T_STRING or T_VARIABLE or '{' or '$' in /in/nerWJ on line 10
Process exited with code 255.

preferences:
169.59 ms | 1399 KiB | 57 Q