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 boolean dir_closedir ( )

                public function dir_closedir(): bool;

            
dir_opendir() public abstract method

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

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

            
dir_readdir() public abstract method

public abstract false|string dir_readdir ( )

                public function dir_readdir(): false|string;

            
dir_rewinddir() public abstract method

public abstract boolean dir_rewinddir ( )

                public function dir_rewinddir(): bool;

            
mkdir() public abstract method

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

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

            
rename() public abstract method

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

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

            
rmdir() public abstract method

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

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

            
stream_cast() public abstract method

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

                public function stream_cast(int $castAs);

            
stream_close() public abstract method

public abstract void stream_close ( )

                public function stream_close(): void;

            
stream_eof() public abstract method

public abstract boolean stream_eof ( )

                public function stream_eof(): bool;

            
stream_flush() public abstract method

public abstract boolean stream_flush ( )

                public function stream_flush(): bool;

            
stream_lock() public abstract method

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

                public function stream_lock(int $operation): bool;

            
stream_metadata() public abstract method

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

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

            
stream_open() public abstract method

public abstract boolean stream_open ( string $path, string $mode, integer $options, string|null &$opened_path )
$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 string|false stream_read ( integer $count )
$count integer

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

            
stream_seek() public abstract method

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

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

            
stream_set_option() public abstract method

public abstract boolean stream_set_option ( integer $option, integer $arg1, integer $arg2 )
$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 array|false stream_stat ( )

                public function stream_stat(): array|false;

            
stream_tell() public abstract method

public abstract integer stream_tell ( )

                public function stream_tell(): int;

            
stream_truncate() public abstract method

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

                public function stream_truncate(int $new_size): bool;

            
stream_write() public abstract method

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

                public function stream_write(string $data): int;

            
unlink() public abstract method

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

url_stat() public abstract method

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

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