<?php

$soap = <<< LOL
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://s...content-available-to-author-only...p.org/soap/envelope/">
	<SOAP-ENV:Header />
	<SOAP-ENV:Body>
		<ns3:GetDistrictByAddressResponse xmlns:ns3="http://il/co/bar/webservices/getdistrictbyaddress">
			<TimeFrameTable>
				<CustomerNumber>250</CustomerNumber>
				<Row>
					<WindowDate>10052016</WindowDate>
					<WeekDay>Sunday</WeekDay>
					<FromHour>1130</FromHour>
					<ToHour>1430</ToHour>
				</Row>
				<Row>
					<WindowDate>10052016</WindowDate>
					<WeekDay>Sunday</WeekDay>
					<FromHour>1430</FromHour>
					<ToHour>1730</ToHour>
				</Row>
			</TimeFrameTable>
		</ns3:GetDistrictByAddressResponse>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
LOL;
$xml = simplexml_load_string($soap);
foreach ($xml->xpath('//Row') as $item)
{
	print_r($item);
}