0 follower

Interface Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface

Implemented byYiisoft\Yii\Debug\Collector\Stream\FilesystemStreamProxy, Yiisoft\Yii\Debug\Collector\Stream\HttpStreamProxy, Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapper

Public Methods

Hide inherited methods

Method Description Defined By
dir_closedir() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
dir_opendir() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
dir_readdir() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
dir_rewinddir() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
mkdir() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
rename() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
rmdir() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_cast() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_close() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_eof() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_flush() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_lock() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_metadata() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_open() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_read() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_seek() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_set_option() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_stat() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_tell() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_truncate() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
stream_write() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
unlink() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
url_stat() Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface

Method Details

Hide inherited methods

dir_closedir() public abstract method

public abstract dir_closedir( ): boolean

                public function dir_closedir(): bool;

            
dir_opendir() public abstract method

public abstract dir_opendir( string $path, integer $options ): boolean
$path string
$options integer

                public function dir_opendir(string $path, int $options): bool;

            
dir_readdir() public abstract method

public abstract dir_readdir( ): false|string

                public function dir_readdir(): false|string;

            
dir_rewinddir() public abstract method

public abstract dir_rewinddir( ): boolean

                public function dir_rewinddir(): bool;

            
mkdir() public abstract method

public abstract mkdir( string $path, integer $mode, integer $options ): boolean
$path string
$mode integer
$options integer

                public function mkdir(string $path, int $mode, int $options): bool;

            
rename() public abstract method

public abstract rename( string $path_from, string $path_to ): boolean
$path_from string
$path_to string

                public function rename(string $path_from, string $path_to): bool;

            
rmdir() public abstract method

public abstract rmdir( string $path, integer $options ): boolean
$path string
$options integer

                public function rmdir(string $path, int $options): bool;

            
stream_cast() public abstract method

public abstract stream_cast( integer $castAs ): resource
$castAs integer

                public function stream_cast(int $castAs);

            
stream_close() public abstract method

public abstract stream_close( ): void

                public function stream_close(): void;

            
stream_eof() public abstract method

public abstract stream_eof( ): boolean

                public function stream_eof(): bool;

            
stream_flush() public abstract method

public abstract stream_flush( ): boolean

                public function stream_flush(): bool;

            
stream_lock() public abstract method

public abstract stream_lock( integer $operation ): boolean
$operation integer

                public function stream_lock(int $operation): bool;

            
stream_metadata() public abstract method

public abstract stream_metadata( string $path, integer $option, mixed $value ): boolean
$path string
$option integer
$value mixed

                public function stream_metadata(string $path, int $option, mixed $value): bool;

            
stream_open() public abstract method

public abstract stream_open( string $path, string $mode, integer $options, string|null &$opened_path ): boolean
$path string
$mode string
$options integer
$opened_path string|null

                public function stream_open(string $path, string $mode, int $options, ?string &$opened_path): bool;

            
stream_read() public abstract method

public abstract stream_read( integer $count ): string|false
$count integer

                public function stream_read(int $count): string|false;

            
stream_seek() public abstract method

public abstract stream_seek( integer $offset, integer $whence SEEK_SET ): boolean
$offset integer
$whence integer

                public function stream_seek(int $offset, int $whence = SEEK_SET): bool;

            
stream_set_option() public abstract method

public abstract stream_set_option( integer $option, integer $arg1, integer $arg2 ): boolean
$option integer
$arg1 integer
$arg2 integer

                public function stream_set_option(int $option, int $arg1, int $arg2): bool;

            
stream_stat() public abstract method

public abstract stream_stat( ): array|false

                public function stream_stat(): array|false;

            
stream_tell() public abstract method

public abstract stream_tell( ): integer

                public function stream_tell(): int;

            
stream_truncate() public abstract method

public abstract stream_truncate( integer $new_size ): boolean
$new_size integer

                public function stream_truncate(int $new_size): bool;

            
stream_write() public abstract method

public abstract stream_write( string $data ): integer
$data string

                public function stream_write(string $data): int;

            
unlink() public abstract method

public abstract unlink( string $path ): boolean
$path string

url_stat() public abstract method

public abstract url_stat( string $path, integer $flags ): array|false
$path string
$flags integer

                public function url_stat(string $path, int $flags): array|false;