Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 PHP CLI 获取 phpinfo 时,我最终得到的只是后半部分。这是命令:
> php -i
我不确定它会叫什么?但是有没有办法控制输出,以便通过按键一次显示一部分?在 Windows 和 Linux 上
php -i | more
应该可以在 Linux 和 Unix 上运行。但是,在 Linux 上,more它只是等价物的别名less
more
less
在 Linux 上,您可以从 shell 执行
php -r "phpinfo();" | less