检测 stdin 是 PHP 中的 tty 设备(终端)还是管道?
我写了一个php脚本。我希望它在交互读取和执行之前使用连接到 tty 设备(终端)的标准输入调用时显示帮助消息,但在使用管道中的文件或流作为标准输入调用时不显示。
有没有办法从 PHP 中检测到这一点?
I wrote a php script. I want it show help message when called with standard input connected to a tty device (terminal) before reading and executing interactively, but dont show when called with a file or stream from pipe as standard input.
Is there a way to detect this from PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
posix_isatty
。该函数接受文件描述符(整数)和 PHP 流。如果它收到 PHP 流,它会自动尝试 强制转换以获得文件描述符并使用它。
Use
posix_isatty
.This function accepts both a file descriptor (an integer) and a PHP stream. If it receives a PHP stream, it automatically attempts to cast it in order to obtain a file descriptor and use it instead.
从 PHP 7.2 开始,您可以使用
stream_isatty
,它也适用于 Windows。例如:
Results in
But
Results in
(这当然也适用于 STDOUT)。
Since PHP 7.2 you can use
stream_isatty
, which works on Windows too.For example:
Results in
But
Results in
(this of course works on STDOUT too).