如何在 php 中重写回显行?
我如何在 php 中重写回显行?例如,假设我有一个像这样的 for 循环,
for($i=0; $i<10; $i++) {
echo $message .= ".";
}
我想通过 "........."
进行回显,我该怎么做?
how can i write over an echoed line in php? For example lets say i have a for loop like this
for($i=0; $i<10; $i++) {
echo $message .= ".";
}
i want to echo over "........."
, how can i do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Echo
\r
将光标移动到行首。将在屏幕上打印“123”(显然,不是在浏览器中,而是命令行)。
Echo
\r
to move the cursor to the start of the line.Will print "123" on the screen (command line, not in a browser, obviously).