PHP 8.5.0 Alpha 1 available for testing

Voting

: five minus five?
(Example: nine)

The Note You're Voting On

phpmanual at remove dot mark dot griffin dot email
9 years ago
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);
?>

<< Back to user notes page

To Top