<?php

$html = <<< EOF
 <div class="grid product-summary product-summary-fixed">
					<div class="grid-item">
						<div class="grid-item-wrap">
							<h1 class="product-title" itemprop="name">
								Bosch Rotak 430 Ergo-Power Rotary Lawnmower</h1>
							<dl class="product-meta">
								<dt>
									Product code:</dt>
								<dd>
									3165140816649</dd>
							</dl>
						</div>
					</div>
					<div class="grid-item">
						<div class="grid-item-wrap">
							<div class="price-container">
								<div class="price-container-wrap" itemprop="offers" itemscope
									itemtype="http://s...content-available-to-author-only...a.org/Offer">
									<meta itemprop="priceCurrency" content="GBP" />
									<p class="accessibility">Current price</p>
													<p class="price-wrap">
														<strong class="product-price" itemprop="price">

														£120</strong>
														was&nbsp;<del>
																£186.00</del>
														</p>
													<p class="product-saving">
														<strong>
															you save
															&nbsp;
															£66.00</strong>
													</p>
												</div>
							</div>

EOF;

$dom = new DOMDocument();
$dom->preserveWhiteSpace = false;
$dom->loadHTML($html);

$xpath = new DOMXpath($dom);

foreach ($xpath->query("//p[@class='price-wrap']") as $pText){
	echo preg_replace("/\s+/", "", $pText->textContent)."\n";
	}