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.
joeforker
2009-09-15 20:14:08