Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
php コマンド ラインは、ユーザーからの適切なプロンプト入力をスクリプトに送信しません。彼は問題の例です
is_dir("C:/");1 をis_dir(fgets(STDIN))返しますが、ユーザー入力後に null を返します"C:/"
is_dir("C:/");
is_dir(fgets(STDIN))
"C:/"
これを試して
is_dir(trim(fgets(STDIN)))
生の入力はc:/ + ENTER KEY
c:/ + ENTER KEY