show/hide this revision's text 3 edited tags
show/hide this revision's text 2 added 2nd, slightly closer, attempt at a solution

How can UTF-8 strings (i.e. 8-bit string) be converted to/from XML-compatible 7-bit strings (i.e. printable ASCII with numeric entities)?

i.e. an encode() function such that:

encode("“£”") -> "“£”"

decode() would also be useful:

decode("“£”") -> "“£”"

PHP's htmlenties()/html_entity_decode() pair does not do the right thing:

htmlentities(html_entity_decode("“£”")) ->
  "“£”"

Laboriously specifying types helps a little, but still returns XML-incompatible named entities, not numeric ones:

htmlentities(html_entity_decode("“£”", ENT_QUOTES, "UTF-8"), ENT_QUOTES, "UTF-8") ->
  "“£”"
show/hide this revision's text 1

Convert a UTF-8 string to/from 7-bit XML in PHP

How can UTF-8 strings (i.e. 8-bit string) be converted to/from XML-compatible 7-bit strings (i.e. printable ASCII with numeric entities)?

i.e. an encode() function such that:

encode("“£”") -> "“£”"

decode() would also be useful:

decode("“£”") -> "“£”"

PHP's htmlenties()/html_entity_decode() pair does not do the right thing:

htmlentities(html_entity_decode("“£”")) -> "“£”"