News Feed
Jobs Feed
Sections




News Archive
Matthew Weir O'Phinney's Blog:
mbstring comes to the rescue
May 17, 2006 @ 05:49:23

Character encodings, especially when dealing with XML, in PHP can be a pain to say the least. Matthew Weir O'Phinney found this out first-hand when a script he was working with had a mixed character set in one of its strings, giving the XML parser in the SimpleXML functionality problems.

I tried a number of solutions, hoping actually to automate it via mbstring INI settings; these schemes all failed. iconv didn't work properly. The only thing that did work was to convert the encoding to latin1 -- but this wreaked havoc with actual UTF-8 characters.

Then, through a series of trial-and-error, all-or-nothing shots, I stumbled on a simple solution.

The discovery was to detect the encoding of the string itself (not really the content) and convert eveything in it to that encoding. How, you might ask? With the handy mb_detect_encoding and mb_convert_encoding functions. Of course, this functionality has to be compiled into PHP, but it's well worth it if it's exactly what you need.

0 comments voice your opinion now!
mbstring xml simplexml encoding utf-8 detect convert mbstring xml simplexml encoding utf-8 detect convert


blog comments powered by Disqus

Similar Posts

PHPBuilder.com: Using XML - A PHP Developer\'s Primer (Part 4) - XML-RPC, PHP and Javascript

Mike Lively's Blog: YAML Now Supported by PHPUnit Database Extension

Builder.com: Get the correct time by converting between time zones with PHP and PEAR

Matthew Weir O'Phinney's Blog: mbstring comes to the rescue

Chris Shiflett's Blog: Character Encoding and XSS


Community Events









Don't see your event here?
Let us know!


release event example testing introduction api opinion tool unittest framework code podcast interview language functional composer object development zendframework2 community

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework