Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /proc/self/root/usr/local/src/php72/php-7.2.12/php-7.2.12/ext/standard/tests/streams/ |
Current File : //proc/self/root/usr/local/src/php72/php-7.2.12/php-7.2.12/ext/standard/tests/streams/bug72853.phpt |
--TEST-- Bug #72853 (stream_set_blocking doesn't work) --SKIPIF-- <?php if(substr(PHP_OS, 0, 3) == 'WIN' ) { die('skip not for windows'); } ?> --FILE-- <?php $descs = array( 0 => array('pipe', 'r'), // stdin 1 => array('pipe', 'w'), // stdout ); $p = proc_open("ls", $descs, $pipes, '.', NULL, NULL); stream_set_blocking($pipes[1], false); var_dump(stream_get_meta_data($pipes[1])); stream_set_blocking($pipes[1], true); while ($outs = fgets($pipes[1], 1024)) { } var_dump(stream_get_meta_data($pipes[1])); proc_close($p); ?> --EXPECTF-- array(7) { ["timed_out"]=> bool(false) ["blocked"]=> bool(false) ["eof"]=> bool(false) ["stream_type"]=> string(5) "STDIO" ["mode"]=> string(1) "r" ["unread_bytes"]=> int(0) ["seekable"]=> bool(false) } array(7) { ["timed_out"]=> bool(false) ["blocked"]=> bool(true) ["eof"]=> bool(true) ["stream_type"]=> string(5) "STDIO" ["mode"]=> string(1) "r" ["unread_bytes"]=> int(0) ["seekable"]=> bool(false) }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare