Voting

: max(three, zero)?
(Example: nine)

The Note You're Voting On

mcuadros at gmail dot com
12 years ago
This is a example of how run a command using as output the TTY, just like crontab -e or git commit does.

<?php

$descriptors
= array(
array(
'file', '/dev/tty', 'r'),
array(
'file', '/dev/tty', 'w'),
array(
'file', '/dev/tty', 'w')
);

$process = proc_open('vim', $descriptors, $pipes);

<< Back to user notes page

To Top