|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-05-04 15:24 UTC] pajoye@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 20 17:00:01 2025 UTC |
Description: ------------ When using any text output function (ncurses_addstr, ncurses_mvwaddstr) with non ascii chars (?, ?, ?, etc.) it fails and output string like "M-CM-)"?. Reproduce code: --------------- <?php ncurses_init(); ncurses_addstr("??????????"); ncurses_refresh(); ncurses_getch(); ncurses_end(); Expected result: ---------------- an empty screen with ?????????? on the top left Actual result: -------------- an empty screen with M-CM-)M-CM-)M-CM-)M-CM-)M-CM-)M-CM-)M-CM-)M-CM-)M-CM-)M-CM-) on the top left