I'm working with the PHP CLI on windows at the moment to write some small desktop command-line apps.
I wanted to know if and how it may be possible to:
- Clear the screen (cls would be the normal command but exec() won't work with it)
- Change the color, change the color of parts of the output (seen this in programs before)
- Make the command line horizontally bigger - things quickly get unreadable
Is any of the above possible from inside a PHP script?