检测 stdin 是 PHP 中的 tty 设备(终端)还是管道?

发布于 2024-09-17 23:54:17 字数 116 浏览 10 评论 0原文

我写了一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小猫一只 2024-09-24 23:54:17

使用 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.

懒的傷心 2024-09-24 23:54:17

从 PHP 7.2 开始,您可以使用 stream_isatty,它也适用于 Windows。

例如:

php -r "var_dump(stream_isatty(STDERR));"

Results in

bool(true)

But

php -r "var_dump(stream_isatty(STDERR));" 2>output.txt

Results in

bool(false)

(这当然也适用于 STDOUT)。

Since PHP 7.2 you can use stream_isatty, which works on Windows too.

For example:

php -r "var_dump(stream_isatty(STDERR));"

Results in

bool(true)

But

php -r "var_dump(stream_isatty(STDERR));" 2>output.txt

Results in

bool(false)

(this of course works on STDOUT too).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文