如何从 PHP 控制台中删除文本?
我的目标是将更新进度百分比打印到控制台(在 Linux 和 Windows 中)。目前我只是每 10% 打印出百分比,但我更希望它每 1% 更新一次,而不用百分比填充屏幕。
是否可以删除在 PHP 中写入控制台的文本?
My goal is to print an updating progress percentage to the console (in both Linux and Windows). Currently I just print out the percentage each 10%, but I would prefer that it updated itself every 1% without filling the screen with percentages.
Is it possible to remove text you have written to the console in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将打印一个退格字符。
will print a backspace character.
很简单
请注意下面的示例
very simple
Note the example below
请参阅
Zend_ProgressBar
See
Zend_ProgressBar
PEAR 的 Console_ProgressBar 对于此类用例非常有用。
要完全清除控制台,您可以使用:
这比跟踪要退格的字符数要容易得多。
PEAR's Console_ProgressBar is useful for this sort of use case.
To clear the console entirely, you can use:
which is quite a bit easier than keeping track of how many characters to backspace.