Clear PHP CLI output

前端 未结 10 1946
一整个雨季
一整个雨季 2020-11-29 22:15

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

10条回答
  •  忘掉有多难
    2020-11-29 22:52

    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.

提交回复
热议问题