Interface Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapperInterface
| Implemented by | Yiisoft\Yii\Debug\Collector\Stream\FilesystemStreamProxy, Yiisoft\Yii\Debug\Collector\Stream\HttpStreamProxy, Yiisoft\Yii\Debug\Helper\StreamWrapper\StreamWrapper |
|---|
Public Methods
Method Details
| public abstract boolean dir_opendir ( string $path, integer $options ) | ||
| $path | string | |
| $options | integer | |
public function dir_opendir(string $path, int $options): bool;
| 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;
| 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;
| public abstract boolean rmdir ( string $path, integer $options ) | ||
| $path | string | |
| $options | integer | |
public function rmdir(string $path, int $options): bool;
| public abstract resource stream_cast ( integer $castAs ) | ||
| $castAs | integer | |
public function stream_cast(int $castAs);
| public abstract boolean stream_lock ( integer $operation ) | ||
| $operation | integer | |
public function stream_lock(int $operation): bool;
| 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;
| 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;
| public abstract string|false stream_read ( integer $count ) | ||
| $count | integer | |
public function stream_read(int $count): string|false;
| 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;
| 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;
| public abstract boolean stream_truncate ( integer $new_size ) | ||
| $new_size | integer | |
public function stream_truncate(int $new_size): bool;
| public abstract integer stream_write ( string $data ) | ||
| $data | string | |
public function stream_write(string $data): int;
Signup or Login in order to comment.