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