3v4l.org

run code in 500+ PHP versions simultaneously
<?php $str = '<?xml version="1.0" encoding="utf-8"?> <products> <item> <ItemID>01</ItemID> <ItemName>Book</ItemName> </item> <Product> <ProductID>01</ProductID> <ProductName>Paper</ProductName> </Product>'; $lines = explode("\n", $str); echo implode("\n", array_map(function ($line) { $trimmedLine = trim($line); if ($trimmedLine == "<Product>") { return $trimmedLine; } return $line; }, $lines));

preferences:
91.29 ms | 1291 KiB | 5 Q