Convert a UTF-8 string to/from 7-bit XML in PHP - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T11:40:42Zhttp://stackoverflow.com/feeds/question/118305http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118305/convert-a-utf-8-string-to-from-7-bit-xml-in-php2Convert a UTF-8 string to/from 7-bit XML in PHPmjs2008-09-22T23:55:02Z2009-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("“£”") -> "&#8220;&#163;&#8221;"
</code></pre>
<p><code>decode()</code> would also be useful:</p>
<pre><code>decode("&#8220;&#163;&#8221;") -> "“£”"
</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("&#8220;&#163;&#8221;")) ->
"&amp;#8220;&pound;&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("&#8220;&#163;&#8221;", ENT_QUOTES, "UTF-8"), ENT_QUOTES, "UTF-8") ->
"&ldquo;&pound;&rdquo;"
</code></pre>
http://stackoverflow.com/questions/118305/convert-a-utf-8-string-to-from-7-bit-xml-in-php/193057#1930570Answer by Kris for Convert a UTF-8 string to/from 7-bit XML in PHPKris2008-10-10T21:16:27Z2008-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->LoadXML( '<?xml version="1.0" encoding="UTF-8"?>'."\n".'<x />', LIBXML_NOENT );
$doc->documentElement->appendChild( $doc->createTextNode( $string ) );
$output = $doc->saveXML( $doc );
$output = preg_replace( '/<\?([^>]+)\?>/', '', $output );
$output = str_replace( array( '<x>', '</x>' ), 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#1940255Answer by porneL for Convert a UTF-8 string to/from 7-bit XML in PHPporneL2008-10-11T12:24:50Z2008-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>