PHP Conference Kansai 2025

Voting

: nine plus zero?
(Example: nine)

The Note You're Voting On

nicole
9 years ago
// convert UTF8 to DOS = CP850
//
// $utf8_text=UTF8-Formatted text;
// $dos=CP850-Formatted text;

// have fun

$dos = mb_convert_encoding($utf8_text, "CP850", mb_detect_encoding($utf8_text, "UTF-8, CP850, ISO-8859-15", true));

<< Back to user notes page

To Top