|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-01-24 20:45 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
Description: ------------ ncurses_instr appears to be broken. It returns a random number of lowercase q's without waiting for actual user input. Reproduce code: --------------- $name = 0; ncurses_init(); ncurses_addstr("Enter Your Name"); ncurses_move(1,0); ncurses_instr($name); ncurses_move(2,0); ncurses_addstr(" Hello $name"); ncurses_getch(); ncurses_end(); Expected result: ---------------- Enter Your Name Bill Hello Bill Actual result: -------------- Enter Your Name Bill Hello qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq number of q's vary from execution to execution typically over one hundred