标签: php windows cmd executable
我已经配置了Windows 7,以便.php文件作为可执行文件运行。
assoc .php=phpfile ftype phpfile="C:\PHP5\php.exe" -f "%1" -- %~2
来源:http://php.net/manual/en/install.windows.commandline.php
现在,当我双击.php文件时,它会执行,然后关闭cmd窗口。我什么也看不见。我怎么能让它等待。
我怎样才能使窗户不会关闭?
答案 0 :(得分:1)
将fgetc(STDIN)添加到脚本的末尾。
fgetc(STDIN)
这会导致应用等待输入。您需要做的就是按Enter键关闭窗口。
或者,如果您希望等待一秒然后关闭,请使用sleep(n)
sleep(n)