Question

Where can I get a complete list of all multi-byte functions for PHP? I need to go through my application and switch the non MB string functions to the new mb functions.

OTHER TIPS

And for the "and switch the non MB string functions to the new mb functions" part of the question: You might be interested in http://php.net/mbstring.overload:

mbstring supports a 'function overloading' feature which enables you to add multibyte awareness to such an application without code modification by overloading multibyte counterparts on the standard string functions. For example, mb_substr() is called instead of substr() if function overloading is enabled. This feature makes it easy to port applications that only support single-byte encodings to a multibyte environment in many cases.

You could use libraries that extends the main multibyte functions, like:
http://code.google.com/p/mbfunctions/

For mb_trim or mb_strtr, ie.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top