When I use the PHP CLI to get the phpinfo all I end up with is the last half. Here is the command:
> php -i
I'm not sure what it would be call? But is there a way of controlling the output so that a portion is displayed a piece at a time with the press of a key? Both on Windows and Linux
php -i | more
should work on both Linux and Unix. On Linux, though, more
is simply an alias for the equivalent less