Hi,
I have a problem. How can I transform this xml:
$xml="<name>Nic colò</name>"
to this
$xml="<name>Nic colò</name>"
I recive by CURL from a site this xml:
<?xml version="1.0">
<name>Niccol&#x F2;</name>
but, for some reasons, I want:
<?xml version="1.0">
<name>Niccolò </name>
There is a php function for this?
Thanks a lot
guido
I have a problem. How can I transform this xml:
$xml="<name>Nic colò</name>"
to this
$xml="<name>Nic colò</name>"
I recive by CURL from a site this xml:
<?xml version="1.0">
<name>Niccol&#x F2;</name>
but, for some reasons, I want:
<?xml version="1.0">
<name>Niccolò </name>
There is a php function for this?
Thanks a lot
guido
Comment