ext-uv/examples/tty.php

10 lines
236 B
PHP
Raw Normal View History

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