3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = new SimpleXMLElement('<foo bar="baz"></foo>'); function iterator(SimpleXMLElement $xml): iterable { foreach ($xml->children() as $img) { yield $img["src"] ?? ""; } } iterator_to_array(iterator($xml->bar));

preferences:
16.03 ms | 402 KiB | 5 Q