PHPverse 2025

Voting

: max(five, six)?
(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