<?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));
You have javascript disabled. You will not be able to edit any code.