哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

PHP streamwrapper 组件

streamWrapper 类

(PHP 4 >= 4.3.2, PHP 5, PHP 7, PHP 8)

简介

允许实现自定义协议处理程序和流,以便与其它文件系统函数(比如 fopen()fread() 等)一起使用。

注意:

不是真实的类,只是如何定义协议的原型类。

注意:

不使用此处描述的方法而使用其它方式可能会导致未定义行为。

一旦流函数尝试访问与其关联的协议,就会初始化此类的实例。

类摘要

class streamWrapper {
/* 属性 */
public resource $context;
/* 方法 */
public __construct()
public dir_closedir(): bool
public dir_opendir(string $path, int $options): bool
public dir_readdir(): string
public dir_rewinddir(): bool
public mkdir(string $path, int $mode, int $options): bool
public rename(string $path_from, string $path_to): bool
public rmdir(string $path, int $options): bool
public stream_cast(int $cast_as): resource
public stream_close(): void
public stream_eof(): bool
public stream_flush(): bool
public stream_lock(int $operation): bool
public stream_metadata(string $path, int $option, mixed $value): bool
public stream_open(
    string $path,
    string $mode,
    int $options,
    ?string &$opened_path
): bool
public stream_read(int $count): string|false
public stream_seek(int $offset, int $whence = SEEK_SET): bool
public stream_set_option(int $option, int $arg1, int $arg2): bool
public stream_stat(): array|false
public stream_tell(): int
public stream_truncate(int $new_size): bool
public stream_write(string $data): int
public unlink(string $path): bool
public url_stat(string $path, int $flags): array|false
public __destruct()
}

属性

资源 context

当前 context,或者没有 context 传递给调用函数,则为 null

使用 stream_context_get_options() 解析 context。

注意:

此属性必须是 public,以便 PHP 可以使用使用实际的 context 资源填充它。

目录

打开 哈希空间 微信小程序中查看更佳