此问题在此处已有答案:
Clear PHP CLI output(12个回答)
5年前关闭。
当PHP脚本从命令行(windows)运行时,如何从脚本中清除控制台屏幕。
例如:
while(true){
// sleep for 10 seconds , then clear the console
sleep(10);
// below command execute to clear the console windows
**COMMAND**
}
字符串
4条答案
按热度按时间9jyewag01#
如果你没有任何运气与上述解决方案,考虑以下
字符串
希望能有帮助。
来源:http://pank.org/blog/2011/02/php-clear-terminal-screen.html
wqlqzqxt2#
对于Windows用户:
字符串
对于Linux用户:
型
eufgjt7s3#
找到了一个解决方案,可以在
cmd
和GitBash中工作。然而,这是我能想到的最丑陋的清除控制台屏幕的实现。可惜,没有其他可行的办法。“魔法”是指…在控制台上戳上50行新行,就像这样:
字符串
这是一个修改(固定?)this non-working (for me) post from 2006的版本。
eaf3rand4#
您可以使用以下命令执行此操作:
字符串
来源:http://www.php.net/manual/en/function.ncurses-clear.php
**编辑:正如trejder所说,这个解决方案只适用于支持的平台,似乎windows不是其中之一。