<?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); $output = ""; $arrayLength = count($lines); for ($i = 0; $i < $arrayLength; $i++) { $trimmedNextLine = isset($lines[$i + 1]) ? trim($lines[$i + 1]) : null; $line = $lines[$i]; if ($trimmedNextLine == "<Product>") { $output .= $line . $trimmedNextLine; $i++; } else { $output .= $line; } if ($i < $arrayLength) { $output .= "\n"; } } echo $output;
You have javascript disabled. You will not be able to edit any code.