PHP 8.6.0 Beta 1 is available for testing

Voting

: min(five, two)?
(Example: nine)

The Note You're Voting On

Daniel
10 years ago
If you are attempting to convert "UTF-8" text to "ISO-8859-1" and the result is always returning in "ASCII", place the following line of code before the mb_convert_encoding:

mb_detect_order(array('UTF-8', 'ISO-8859-1'));

It is necessary to force a specific search order for the conversion to work

<< Back to user notes page

To Top