PHP 8.6.0 Beta 1 is available for testing

Voting

: six minus five?
(Example: nine)

The Note You're Voting On

d_maksimov
4 years ago
It was helpful for my exec(...) call. When it returned cp866 or cp1251:

try {
    $line = iconv('CP866', 'CP1251', $line);
} catch(Exception $e) {
}
return iconv('CP1251', 'UTF-8', $line);

<< Back to user notes page

To Top