<?php
Swoole\Coroutine\System::statvfs(string $path)
The path of the file system
Get the fs
information.
<?php
go(function() {
var_dump(Swoole\Coroutine\System::statvfs('/'));
});
// array(11) {
// ["bsize"]=>
// int(4096)
// ["frsize"]=>
// int(4096)
// ["blocks"]=>
// int(61068098)
// ["bfree"]=>
// int(45753580)
// ["bavail"]=>
// int(42645728)
// ["files"]=>
// int(15523840)
// ["ffree"]=>
// int(14909927)
// ["favail"]=>
// int(14909927)
// ["fsid"]=>
// int(1002377915335522995)
// ["flag"]=>
// int(4096)
// ["namemax"]=>
// int(255)
// }