foreach ($xmlFiles as $file) {
$xml = simplexml_load_file($file);
foreach ($xml->offer as $offer) {
$fields = array(
'id' => $offer->offer_ID.'',
'fields' => array(
'STAGE_ID' => 'true' === reset($offer->result) ? 'WON' : 'LOSE',
'UF_CRM_598094ED16001' => preg_replace('/\D+/', '', trim($offer->price)),
),
);