in my code i have to show some element of an object ( a xml file), but the problem i am having is that the names of the elements contain special characters like "é", "à", "è" "ç" etc...
so when i try for example t show :
echo $xml->CoordonnéesNum->Téléphone;
it doesn't work, so i have to change it to something like this : $xml->Coor->Tel //without the special characters
but i have thousands of xml files in wich these elements are named with these special characters and i cannot change them all manually
i have to mention that im new to php:
so please if you can help to fix this issue that would be wonderful.