In database.xml certain characters get encoded to XML entities, do we happen to have a list of which get encoded? The ones I've discovered so far:
Others you might expect to get encoded such as the copyright symbol are not. I'm searching database.xml for certain values and want to ensure I match the correct results.
If you could even tell me which function in which language encodes these I can do my own research.
& == &
' == '
" == "
/ == <
> == >
Others you might expect to get encoded such as the copyright symbol are not. I'm searching database.xml for certain values and want to ensure I match the correct results.
If you could even tell me which function in which language encodes these I can do my own research.
Posted Sun 08 Jun 25 @ 8:21 pm
those are the only 5
& ' " < >
https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents
& ' " < >
https://stackoverflow.com/questions/1091945/what-characters-do-i-need-to-escape-in-xml-documents
Posted Sun 08 Jun 25 @ 8:32 pm