3v4l.org

run code in 300+ PHP versions simultaneously
$xml = simplexml_load_string("<?xml version='1.0' ?> <ImageSets> <ImageSet Category='primary'> <SwatchImage> <URL>www.url.jpg</URL> </SwatchImage> </ImageSet> </ImageSets> "); $primary_url = ''; foreach ($xml->ImageSet as $set) { if ($set->attributes()->Category == 'primary') { $primary_url = $set->SwatchImage->URL; break; } } echo $primary_url;
Output for 5.3.0 - 5.3.29, 7.2.29 - 7.2.33, 7.3.16 - 7.3.31, 7.4.3 - 7.4.25, 7.4.27 - 7.4.32, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
$xml = simplexml_load_string("<?xml version='1.0' ?> <ImageSets> <ImageSet Category='primary'> <SwatchImage> <URL>www.url.jpg</URL> </SwatchImage> </ImageSet> </ImageSets> "); $primary_url = ''; foreach ($xml->ImageSet as $set) { if ($set->attributes()->Category == 'primary') { $primary_url = $set->SwatchImage->URL; break; } } echo $primary_url;
Output for 8.0.13
Parse error: syntax error, unexpected identifier "version" in /in/OVeQY on line 1
Process exited with code 255.
Output for 5.4.0 - 5.4.17, 5.5.0, 7.3.32 - 7.3.33, 7.4.26, 7.4.33
Parse error: syntax error, unexpected 'version' (T_STRING) in /in/OVeQY on line 1
Process exited with code 255.

preferences:
140.23 ms | 402 KiB | 189 Q