<?php

$data = '<?xml version="1.0" encoding="utf-8"?>
<cities>
<country name="Абхазия">
<city id="37188" region="27028" head="" type="3" country="Абхазия" part="" resort="" climate="">Новый Афон</city>
<city id="37178" region="10282" head="" type="3" country="Абхазия" part="" resort="" climate="">Пицунда</city>
<city id="37187" region="37187" head="" type="3" country="Абхазия" part="" resort="" climate="">Гудаута</city>
<city id="37172" region="10280" head="" type="3" country="Абхазия" part="" resort="" climate="">Гагра</city>
<city id="37189" region="10281" head="0" type="3" country="Абхазия" part="" resort="0" climate="">Сухум</city>
</country>
</cities>';

$xml = new SimpleXMLElement($data);
$search = 'Гагра';
$city = $xml->xpath("//city[text()=\"${search}\"]/@id");
var_dump((int) $city[0]->id);
