Where can I get a complete list of all multibyte functions for PHP?

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

+4
source share
3 answers

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

mbstring supports a function overload function that allows you to add multi-ticket information to such an application without modifying the code, overloading multi-byte copies of standard string functions. For example, mb_substr () is called instead of substr () if the overload function is enabled. This feature simplifies porting applications that support single-byte encodings in a multi-byte environment in many cases.
+2
source

You can use libraries that extend the basic functions of a multibyte, for example:
http://code.google.com/p/mbfunctions/

For mb_trim or mb_strtr, i.e.

0
source

Source: https://habr.com/ru/post/1286605/


All Articles