Posts by luisphilip90 • 1 point
1 post
-
-1
votes6
answers1348
viewsA: Is there an alternative to system('cls') in PHP Console?
Unfortunately, PHP 8.0.2 does not have a function to do this. However, if you just want to clear the console, try this: print (" 033 [2J 033 [; H"); or popen('cls','w'); Works in php 8.0.2. Same as…