Formattazione dati per generazione xml
Updated at: 10/01/2014
Per preparare i dati in modo che vengano letti correttamente, usare questa funzione:
function format_xml($testo){
//return $testo;
if(isset($testo) && strlen($testo)>0){
$testo = str_replace("'", "'", $testo);
$testo = strip_tags($testo);
$testo = html_entity_decode($testo, ENT_QUOTES, 'ISO-8859-1');
$testo = str_replace("&", "&", $testo);
$testo = utf8_encode($testo);
//$testo = htmlentities($testo, ENT_IGNORE, 'utf-8');
//$testo = utf8_encode($testo);
return $testo;
}else{
return "";
}
}