You can write directly to the tty (screen) even when the shell has redirected output, with:
<?php
$h = fopen(posix_ctermid(), "rb+");
fwrite($h, "Testing direct output\n");
fclose($h);
?>
(PHP 4, PHP 5, PHP 7, PHP 8)
posix_ctermid — 制御する端末のパス名を得る
そのプロセスで現在制御している端末のパス名を表す文字列を作成します。 エラーが発生した場合は errno を設定します。この値を調べるには posix_get_last_error() を使用します。
この関数にはパラメータはありません。
処理に成功した場合は、現在制御している端末のパス名を表す文字列を返します。
それ以外の場合は false
を返し、errno を設定します。
この値を調べるには posix_get_last_error() を使用します。
例1 posix_ctermid() の例
この例は、現在の TTY へのパスを表示します。
<?php
echo "I am running from ".posix_ctermid();
?>
You can write directly to the tty (screen) even when the shell has redirected output, with:
<?php
$h = fopen(posix_ctermid(), "rb+");
fwrite($h, "Testing direct output\n");
fclose($h);
?>