News Feed
Jobs Feed
Sections




News Archive
SitePoint PHP Blog:
Character Encoding Issues with Cultural Integration
September 10, 2008 @ 12:07:06

On the SitePoint PHP Blog Troels Knak-Nielsen points out some "cultural integration issues" he's seen when it comes to character encoding in his PHP applications.

The gold standard solution is to convert everything to utf-8. Since utf-8 covers the entire unicode range, it is capable of representing any character that latin1 can. Unfortunately, that's a lot easier to do from the outset, than with a big, running application. And even then, there may be third party code and extensions, which assume latin1. I'd much rather continue with latin1 being the default, and only jump through hoops at the few places where I actually need full utf-8 capacity.

He came up with a (relatively) simple solution - keep the information encoded in the latin1 he already has but serve up the pages with a utf-8 format, embedding utf-8 inside the latin1 when needed. He gives the code for both, making use of output buffering and the utf8 encoding functions to make it all work.

0 comments voice your opinion now!
character encoding cultural integration utf8 latin1 tutorial


blog comments powered by Disqus

Similar Posts

Web Developer Juice: 11 easy steps for installing Apache ActiveMQ and configuring it for PHP applica

Abhinav Singh's Blog: PHP Extensions - How and Why?

TotalPHP.com: Creating a text or csv file of information from your database

Sameer Borate's Blog: Data filtering and validation using Inspekt

PHP Web Services: How to configure https for Apache2.2 and consume PHP web services over https


Community Events











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


phpunit podcast framework unittest application object series conference community interview release testing opinion example development zendframework2 language code functional introduction

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