Convert a UTF-8 string to/from 7-bit XML in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T11:40:42Z http://stackoverflow.com/feeds/question/118305 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/118305/convert-a-utf-8-string-to-from-7-bit-xml-in-php 2 Convert a UTF-8 string to/from 7-bit XML in PHP mjs 2008-09-22T23:55:02Z 2009-01-26T15:46:59Z <p>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)?</p> <p>i.e. an <code>encode()</code> function such that:</p> <pre><code>encode("“£”") -&gt; "&amp;#8220;&amp;#163;&amp;#8221;" </code></pre> <p><code>decode()</code> would also be useful:</p> <pre><code>decode("&amp;#8220;&amp;#163;&amp;#8221;") -&gt; "“£”" </code></pre> <p>PHP's <code>htmlenties()</code>/<code>html_entity_decode()</code> pair does not do the right thing:</p> <pre><code>htmlentities(html_entity_decode("&amp;#8220;&amp;#163;&amp;#8221;")) -&gt; "&amp;amp;#8220;&amp;pound;&amp;amp;#8221;" </code></pre> <p>Laboriously specifying types helps a little, but still returns XML-incompatible named entities, not numeric ones:</p> <pre><code>htmlentities(html_entity_decode("&amp;#8220;&amp;#163;&amp;#8221;", ENT_QUOTES, "UTF-8"), ENT_QUOTES, "UTF-8") -&gt; "&amp;ldquo;&amp;pound;&amp;rdquo;" </code></pre> http://stackoverflow.com/questions/118305/convert-a-utf-8-string-to-from-7-bit-xml-in-php/193057#193057 0 Answer by Kris for Convert a UTF-8 string to/from 7-bit XML in PHP Kris 2008-10-10T21:16:27Z 2008-11-12T10:36:47Z <p>It's a bit of a workaround, but I read a bit about <code>iconv()</code> and i don't think it'll give you numeric entities (not put to the test)</p> <pre><code>function decode( $string ) { $doc = new DOMDocument( "1.0", "UTF-8" ); $doc-&gt;LoadXML( '&lt;?xml version="1.0" encoding="UTF-8"?&gt;'."\n".'&lt;x /&gt;', LIBXML_NOENT ); $doc-&gt;documentElement-&gt;appendChild( $doc-&gt;createTextNode( $string ) ); $output = $doc-&gt;saveXML( $doc ); $output = preg_replace( '/&lt;\?([^&gt;]+)\?&gt;/', '', $output ); $output = str_replace( array( '&lt;x&gt;', '&lt;/x&gt;' ), array( '', '' ), $output ); return trim( $output ); } </code></pre> <p>This however, I have put to the test. I might do the reverse later, just don't hold your breath ;-)</p> http://stackoverflow.com/questions/118305/convert-a-utf-8-string-to-from-7-bit-xml-in-php/194025#194025 5 Answer by porneL for Convert a UTF-8 string to/from 7-bit XML in PHP porneL 2008-10-11T12:24:50Z 2008-10-11T12:24:50Z <p><a href="http://php.net/manual/en/function.mb-encode-numericentity.php" rel="nofollow"><code>mb_encode_numericentity</code></a> does that exactly.</p>