I want to read command line input in PHP. I used fscanf(STDIN, "%d", $numbers_arr[$i]); But this takes input when enter key is pressed. How can i read input when the space key is pressed.
输入格式将分为两行,如以下
5 2 5 2
1 2 2 3 4 5
第一行由两个输入组成,第二行由第一行作为第一个编号输入的元素的编号组成。
请让我知道该怎么做