class@anonymous::stream_stat()

Source

public function stream_stat(): array
{
    return [
        'mode' => 33206,
        // POSIX_S_IFREG | 0666
        'nlink' => 1,
        'rdev' => -1,
        'size' => \strlen($this->data),
        'blksize' => -1,
        'blocks' => -1,
    ];
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.