tags:

views:

102

answers:

1

For example, in one Unicode normal form á is always represented as an unaccented letter a and a combining accent mark, in another it must be a single pre-combined Unicode character. How would I convert between these forms in PHP?

+1  A: 

Unicode normalization is provided by the intl extension and its Normalizer class.

http://docs.php.net/manual/en/class.normalizer.php

joeforker