在 PHP 中使用 ncurses 动态更新计数
以这个PHP脚本为例:
$i = 0;
foreach ($arrKey as $VarKey)
{
$i++
echo $i;
}
我想使用ncurses让它动态更新echo,这样就不会每次都回显,只有数字发生变化。问题是,我不知道该怎么做。有人能指出我正确的方向吗?
Take this PHP script for example:
$i = 0;
foreach ($arrKey as $VarKey)
{
$i++
echo $i;
}
I would like to use ncurses to make it dynamically update the echo, so that instead of echoing each time, only the number changes. Problem is, I have no idea how to do this. Can anyone point me in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于初学者来说,您最好阅读 PHP ncurses 手册。
还发现了Zend Developer Zone 上关于使用的合理教程 ncurses 库,因为 PHP 手册本身并没有很好地介绍如何实际使用它。
然而,这种控制台操作不适合胆小的人。
Well you had better read the PHP ncurses manual for starters.
Also found a reasonable tutorial on the Zend Developer Zone regarding the use of the ncurses library, as the PHP manual on it's own does not give a good introduction on how to actually go about using it.
This sort of console manipulation is not for the feint-hearted however.