To run a full screen program from a PHP CLI script, redirect input from and output to /dev/tty. For example:
system("timeconfig > /dev/tty < /dev/tty");
System will wait for the program to finish before continuing.
To run a full screen program from a PHP CLI script, redirect input from and output to /dev/tty. For example:
system("timeconfig > /dev/tty < /dev/tty");
System will wait for the program to finish before continuing.