International PHP Conference Munich 2025

Voting

: six plus one?
(Example: nine)

The Note You're Voting On

Anonymous
17 years ago
I needed to emulate a tty for a process (it wouldnt write to stdout or read from stdin), so I found this:

<?php
$descriptorspec
= array(0 => array('pty'),
1 => array('pty'),
2 => array('pty'));
?>

pipes are bidirectional then

<< Back to user notes page

To Top