Codice PHP:
function retrievePrezzoPubblico($xmlstr) {
$xml = simplexml_load_string($xmlstr);
foreach($xml->prezzi as $prezzo) {
if ($prezzo->tipo == 'pubblico') {
return $prezzo->prezzo;
}
}
return 0;
}
Codice PHP:
function retrievePrezzoPubblico($xmlstr) {
$xml = simplexml_load_string($xmlstr);
foreach($xml->prezzi as $prezzo) {
if ($prezzo->tipo == 'pubblico') {
return $prezzo->prezzo;
}
}
return 0;
}
"Mai discutere con un idiota. Ti trascina al suo livello e ti batte con l'esperienza." (Oscar Wilde)