mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
--TEST--
|
|
Check for fs read and close
|
|
--FILE--
|
|
<?php
|
|
define("FIXTURE_PATH", dirname(__FILE__) . "/fixtures/hello.data");
|
|
|
|
uv_fs_open(uv_default_loop(), FIXTURE_PATH, UV::O_RDONLY, 0, function($r) {
|
|
uv_fs_read(uv_default_loop(), $r, $offset = 0, $len = 32, function($stream, $data) {
|
|
if (is_long($data)) {
|
|
if ($data < 0) {
|
|
throw new Exception("read error");
|
|
}
|
|
|
|
uv_fs_close(uv_default_loop(), $stream, function() { });
|
|
} else {
|
|
echo trim($data) . "\n";
|
|
}
|
|
});
|
|
});
|
|
|
|
// test offset
|
|
uv_fs_open(uv_default_loop(), FIXTURE_PATH, UV::O_RDONLY, 0, function($r) {
|
|
uv_fs_read(uv_default_loop(), $r, $offset = 1, $len = 32, function($stream, $data) {
|
|
if (is_long($data)) {
|
|
if ($data < 0) {
|
|
throw new Exception("read error");
|
|
}
|
|
|
|
uv_fs_close(uv_default_loop(), $stream, function() { });
|
|
} else {
|
|
echo "H" . trim($data) . "\n";
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
uv_run();
|
|
?>
|
|
--EXPECT--
|
|
Hello
|
|
Hello
|