ext-uv/examples/tty.php

10 lines
233 B
PHP
Raw Normal View History

2012-06-23 20:34:06 +02:00
<?php
uv_fs_open(uv_default_loop(), "/dev/tty", UV::O_RDONLY, 0, function($r){
$tty = uv_tty_init(uv_default_loop(), $r, 1);
var_dump(uv_tty_get_winsize($tty, $width, $height));
var_dump($width, $height);
});
uv_run();