Voting

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

The Note You're Voting On

Chrigu
20 years ago
If you need to distinguish between UTF-8 and ISO-8859-1 encoding, list UTF-8 first in your encoding_list:
mb_detect_encoding($string, 'UTF-8, ISO-8859-1');

if you list ISO-8859-1 first, mb_detect_encoding() will always return ISO-8859-1.

<< Back to user notes page

To Top