I\'m trying to get a \"live\" progress indicator working on my php CLI app. Rather than outputting as
1Done 2Done 3Done
I would rather it c
Tried some of solutions from answers:
$end) { foreach ($messages as $msg) { output()->write("$i. "); output()->write($msg); sleep(1); output()->write($end); } }
And \033[2K\r seems like works correct.
\033[2K\r