39# define STREAMS_D int __php_stream_call_depth ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC
40# define STREAMS_C 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC
41# define STREAMS_REL_C __php_stream_call_depth + 1 ZEND_FILE_LINE_CC, \
42 __php_stream_call_depth ? __zend_orig_filename : __zend_filename, \
43 __php_stream_call_depth ? __zend_orig_lineno : __zend_lineno
45# define STREAMS_DC , STREAMS_D
46# define STREAMS_CC , STREAMS_C
47# define STREAMS_REL_CC , STREAMS_REL_C
55# define STREAMS_REL_CC
60#define php_stream_alloc_rel(ops, thisptr, persistent, mode) _php_stream_alloc((ops), (thisptr), (persistent), (mode) STREAMS_REL_CC)
62#define php_stream_copy_to_mem_rel(src, maxlen, persistent) _php_stream_copy_to_mem((src), (buf), (maxlen), (persistent) STREAMS_REL_CC)
64#define php_stream_fopen_rel(filename, mode, opened, options) _php_stream_fopen((filename), (mode), (opened), (options) STREAMS_REL_CC)
66#define php_stream_fopen_with_path_rel(filename, mode, path, opened, options) _php_stream_fopen_with_path((filename), (mode), (path), (opened), (options) STREAMS_REL_CC)
68#define php_stream_fopen_from_fd_rel(fd, mode, persistent_id, zero_position) _php_stream_fopen_from_fd((fd), (mode), (persistent_id), (zero_position) STREAMS_REL_CC)
69#define php_stream_fopen_from_file_rel(file, mode) _php_stream_fopen_from_file((file), (mode) STREAMS_REL_CC)
71#define php_stream_fopen_from_pipe_rel(file, mode) _php_stream_fopen_from_pipe((file), (mode) STREAMS_REL_CC)
73#define php_stream_fopen_tmpfile_rel() _php_stream_fopen_tmpfile(0 STREAMS_REL_CC)
75#define php_stream_fopen_temporary_file_rel(dir, pfx, opened_path) _php_stream_fopen_temporary_file((dir), (pfx), (opened_path) STREAMS_REL_CC)
77#define php_stream_open_wrapper_rel(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_REL_CC)
78#define php_stream_open_wrapper_ex_rel(path, mode, options, opened, context) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), (context) STREAMS_REL_CC)
80#define php_stream_make_seekable_rel(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_REL_CC)
166#define PHP_STREAM_FLAG_NO_SEEK 0x1
167#define PHP_STREAM_FLAG_NO_BUFFER 0x2
169#define PHP_STREAM_FLAG_EOL_UNIX 0x0
170#define PHP_STREAM_FLAG_DETECT_EOL 0x4
171#define PHP_STREAM_FLAG_EOL_MAC 0x8
177#define PHP_STREAM_FLAG_AVOID_BLOCKING 0x10
179#define PHP_STREAM_FLAG_NO_CLOSE 0x20
181#define PHP_STREAM_FLAG_IS_DIR 0x40
183#define PHP_STREAM_FLAG_NO_FCLOSE 0x80
187#define PHP_STREAM_FLAG_SUPPRESS_ERRORS 0x100
190#define PHP_STREAM_FLAG_NO_RSCR_DTOR_CLOSE 0x200
192#define PHP_STREAM_FLAG_NO_IO 0x400
194#define PHP_STREAM_FLAG_WAS_WRITTEN 0x80000000
243 const char *open_filename;
244 uint32_t open_lineno;
250#define PHP_STREAM_CONTEXT(stream) \
251 ((php_stream_context*) ((stream)->ctx ? ((stream)->ctx->ptr) : NULL))
254#define PHP_STREAM_FCLOSE_NONE 0
255#define PHP_STREAM_FCLOSE_FDOPEN 1
256#define PHP_STREAM_FCLOSE_FOPENCOOKIE 2
263#define php_stream_alloc(ops, thisptr, persistent_id, mode) _php_stream_alloc((ops), (thisptr), (persistent_id), (mode) STREAMS_CC)
265#define php_stream_get_resource_id(stream) ((php_stream *)(stream))->res->handle
267#define php_stream_auto_cleanup(stream) { (stream)->__exposed = 1; }
271#define php_stream_to_zval(stream, zval) { ZVAL_RES(zval, (stream)->res); (stream)->__exposed = 1; }
273#define php_stream_from_zval(xstr, pzval) do { \
274 if (((xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), \
275 "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
279#define php_stream_from_res(xstr, res) do { \
280 if (((xstr) = (php_stream*)zend_fetch_resource2((res), \
281 "stream", php_file_le_stream(), php_file_le_pstream())) == NULL) { \
285#define php_stream_from_res_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2((res), "stream", php_file_le_stream(), php_file_le_pstream())
286#define php_stream_from_zval_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), "stream", php_file_le_stream(), php_file_le_pstream())
290#define php_stream_free_enclosed(stream_enclosed, close_options) _php_stream_free_enclosed((stream_enclosed), (close_options))
294#define PHP_STREAM_PERSISTENT_SUCCESS 0
295#define PHP_STREAM_PERSISTENT_FAILURE 1
296#define PHP_STREAM_PERSISTENT_NOT_EXIST 2
298#define PHP_STREAM_FREE_CALL_DTOR 1
299#define PHP_STREAM_FREE_RELEASE_STREAM 2
300#define PHP_STREAM_FREE_PRESERVE_HANDLE 4
301#define PHP_STREAM_FREE_RSRC_DTOR 8
302#define PHP_STREAM_FREE_PERSISTENT 16
303#define PHP_STREAM_FREE_IGNORE_ENCLOSING 32
304#define PHP_STREAM_FREE_KEEP_RSRC 64
305#define PHP_STREAM_FREE_CLOSE (PHP_STREAM_FREE_CALL_DTOR | PHP_STREAM_FREE_RELEASE_STREAM)
306#define PHP_STREAM_FREE_CLOSE_CASTED (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PRESERVE_HANDLE)
307#define PHP_STREAM_FREE_CLOSE_PERSISTENT (PHP_STREAM_FREE_CLOSE | PHP_STREAM_FREE_PERSISTENT)
310#define php_stream_free(stream, close_options) _php_stream_free((stream), (close_options))
311#define php_stream_close(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE)
312#define php_stream_pclose(stream) _php_stream_free((stream), PHP_STREAM_FREE_CLOSE_PERSISTENT)
315#define php_stream_rewind(stream) _php_stream_seek((stream), 0L, SEEK_SET)
316#define php_stream_seek(stream, offset, whence) _php_stream_seek((stream), (offset), (whence))
319#define php_stream_tell(stream) _php_stream_tell((stream))
322#define php_stream_read(stream, buf, count) _php_stream_read((stream), (buf), (count))
327#define php_stream_write_string(stream, str) _php_stream_write(stream, str, strlen(str))
328#define php_stream_write(stream, buf, count) _php_stream_write(stream, (buf), (count))
331#define php_stream_fill_read_buffer(stream, size) _php_stream_fill_read_buffer((stream), (size))
336#define php_stream_printf _php_stream_printf
339#define php_stream_eof(stream) _php_stream_eof((stream))
342#define php_stream_getc(stream) _php_stream_getc((stream))
345#define php_stream_putc(stream, c) _php_stream_putc((stream), (c))
348#define php_stream_flush(stream) _php_stream_flush((stream), 0)
351#define php_stream_sync(stream, d) _php_stream_sync((stream), (d))
354#define php_stream_gets(stream, buf, maxlen) _php_stream_get_line((stream), (buf), (maxlen), NULL)
356#define php_stream_get_line(stream, buf, maxlen, retlen) _php_stream_get_line((stream), (buf), (maxlen), (retlen))
361#define php_stream_puts(stream, buf) _php_stream_puts((stream), (buf))
364#define php_stream_stat(stream, ssb) _php_stream_stat((stream), (ssb))
367#define php_stream_stat_path(path, ssb) _php_stream_stat_path((path), 0, (ssb), NULL)
368#define php_stream_stat_path_ex(path, flags, ssb, context) _php_stream_stat_path((path), (flags), (ssb), (context))
371#define php_stream_mkdir(path, mode, options, context) _php_stream_mkdir(path, mode, options, context)
374#define php_stream_rmdir(path, options, context) _php_stream_rmdir(path, options, context)
377#define php_stream_opendir(path, options, context) _php_stream_opendir((path), (options), (context) STREAMS_CC)
379#define php_stream_readdir(dirstream, dirent) _php_stream_readdir((dirstream), (dirent))
380#define php_stream_closedir(dirstream) php_stream_close((dirstream))
381#define php_stream_rewinddir(dirstream) php_stream_rewind((dirstream))
388#define php_stream_scandir(dirname, namelist, context, compare) _php_stream_scandir((dirname), (namelist), 0, (context), (compare))
391#define php_stream_set_option(stream, option, value, ptrvalue) _php_stream_set_option((stream), (option), (value), (ptrvalue))
393#define php_stream_set_chunk_size(stream, size) _php_stream_set_option((stream), PHP_STREAM_OPTION_SET_CHUNK_SIZE, (size), NULL)
399#define PHP_STREAM_MKDIR_RECURSIVE 1
406#define PHP_STREAM_URL_STAT_LINK 1
407#define PHP_STREAM_URL_STAT_QUIET 2
408#define PHP_STREAM_URL_STAT_IGNORE_OPEN_BASEDIR 4
411#define PHP_STREAM_OPTION_BLOCKING 1
415#define PHP_STREAM_OPTION_READ_BUFFER 2
416#define PHP_STREAM_OPTION_WRITE_BUFFER 3
418#define PHP_STREAM_BUFFER_NONE 0
419#define PHP_STREAM_BUFFER_LINE 1
420#define PHP_STREAM_BUFFER_FULL 2
423#define PHP_STREAM_OPTION_READ_TIMEOUT 4
424#define PHP_STREAM_OPTION_SET_CHUNK_SIZE 5
427#define PHP_STREAM_OPTION_LOCKING 6
430#define PHP_STREAM_LOCK_SUPPORTED 1
432#define php_stream_supports_lock(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, 0, (void *) PHP_STREAM_LOCK_SUPPORTED) == 0 ? 1 : 0)
433#define php_stream_lock(stream, mode) _php_stream_set_option((stream), PHP_STREAM_OPTION_LOCKING, (mode), (void *) NULL)
436#define PHP_STREAM_OPTION_XPORT_API 7
437#define PHP_STREAM_OPTION_CRYPTO_API 8
438#define PHP_STREAM_OPTION_MMAP_API 9
439#define PHP_STREAM_OPTION_TRUNCATE_API 10
441#define PHP_STREAM_TRUNCATE_SUPPORTED 0
442#define PHP_STREAM_TRUNCATE_SET_SIZE 1
444#define php_stream_truncate_supported(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_TRUNCATE_API, PHP_STREAM_TRUNCATE_SUPPORTED, NULL) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
448#define php_stream_truncate_set_size(stream, size) _php_stream_truncate_set_size((stream), (size))
451#define PHP_STREAM_OPTION_META_DATA_API 11
452#define php_stream_populate_meta_data(stream, zv) (_php_stream_set_option((stream), PHP_STREAM_OPTION_META_DATA_API, 0, zv) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
456#define PHP_STREAM_OPTION_CHECK_LIVENESS 12
459#define PHP_STREAM_OPTION_PIPE_BLOCKING 13
462#define PHP_STREAM_OPTION_SYNC_API 14
463#define PHP_STREAM_SYNC_SUPPORTED 0
464#define PHP_STREAM_SYNC_FSYNC 1
465#define PHP_STREAM_SYNC_FDSYNC 2
467#define php_stream_sync_supported(stream) (_php_stream_set_option((stream), PHP_STREAM_OPTION_SYNC_API, PHP_STREAM_SYNC_SUPPORTED, NULL) == PHP_STREAM_OPTION_RETURN_OK ? 1 : 0)
470#define PHP_STREAM_OPTION_RETURN_OK 0
471#define PHP_STREAM_OPTION_RETURN_ERR -1
472#define PHP_STREAM_OPTION_RETURN_NOTIMPL -2
476#define PHP_STREAM_COPY_ALL ((size_t)-1)
481#define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (maxlen) STREAMS_CC)
483#define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), (dest), (maxlen), (len) STREAMS_CC)
489#define php_stream_copy_to_mem(src, maxlen, persistent) _php_stream_copy_to_mem((src), (maxlen), (persistent) STREAMS_CC)
493#define php_stream_passthru(stream) _php_stream_passthru((stream) STREAMS_CC)
496#include "streams/php_stream_transport.h"
504#define PHP_STREAM_AS_STDIO 0
506#define PHP_STREAM_AS_FD 1
508#define PHP_STREAM_AS_SOCKETD 2
510#define PHP_STREAM_AS_FD_FOR_SELECT 3
513#define PHP_STREAM_CAST_TRY_HARD 0x80000000
514#define PHP_STREAM_CAST_RELEASE 0x40000000
515#define PHP_STREAM_CAST_INTERNAL 0x20000000
516#define PHP_STREAM_CAST_MASK (PHP_STREAM_CAST_TRY_HARD | PHP_STREAM_CAST_RELEASE | PHP_STREAM_CAST_INTERNAL)
521#define php_stream_can_cast(stream, as) _php_stream_cast((stream), (as), NULL, 0)
522#define php_stream_cast(stream, as, ret, show_err) _php_stream_cast((stream), (as), (ret), (show_err))
526#define php_stream_is(stream, anops) ((stream)->ops == anops)
527#define PHP_STREAM_IS_STDIO &php_stream_stdio_ops
529#define php_stream_is_persistent(stream) (stream)->is_persistent
533#define IGNORE_PATH 0x00000000
534#define USE_PATH 0x00000001
535#define IGNORE_URL 0x00000002
536#define REPORT_ERRORS 0x00000008
540#define STREAM_MUST_SEEK 0x00000010
548#define STREAM_WILL_CAST 0x00000020
551#define STREAM_LOCATE_WRAPPERS_ONLY 0x00000040
554#define STREAM_OPEN_FOR_INCLUDE 0x00000080
557#define STREAM_USE_URL 0x00000100
560#define STREAM_ONLY_GET_HEADERS 0x00000200
563#define STREAM_DISABLE_OPEN_BASEDIR 0x00000400
566#define STREAM_OPEN_PERSISTENT 0x00000800
569#define STREAM_USE_GLOB_DIR_OPEN 0x00001000
572#define STREAM_DISABLE_URL_PROTECTION 0x00002000
575#define STREAM_ASSUME_REALPATH 0x00004000
578#define STREAM_USE_BLOCKING_PIPE 0x00008000
581#define STREAM_OPEN_FOR_ZEND_STREAM 0x00010000
597#define php_stream_open_wrapper(path, mode, options, opened) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), NULL STREAMS_CC)
598#define php_stream_open_wrapper_ex(path, mode, options, opened, context) _php_stream_open_wrapper_ex((path), (mode), (options), (opened), (context) STREAMS_CC)
603#define PHP_STREAM_UNCHANGED 0
604#define PHP_STREAM_RELEASED 1
605#define PHP_STREAM_FAILED 2
606#define PHP_STREAM_CRITICAL 3
607#define PHP_STREAM_NO_PREFERENCE 0
608#define PHP_STREAM_PREFER_STDIO 1
609#define PHP_STREAM_FORCE_CONVERSION 2
612#define php_stream_make_seekable(origstream, newstream, flags) _php_stream_make_seekable((origstream), (newstream), (flags) STREAMS_CC)
616#define php_stream_get_url_stream_wrappers_hash() _php_stream_get_url_stream_wrappers_hash()
619#define php_get_stream_filters_hash() _php_get_stream_filters_hash()
623static inline bool php_is_stream_path(
const char *filename)
628 (*
p >=
'a' && *
p <=
'z') ||
629 (*
p >=
'A' && *
p <=
'Z') ||
630 (*
p >=
'0' && *
p <=
'9') ||
631 *
p ==
'+' || *
p ==
'-' || *
p ==
'.';
633 return ((
p != filename) && (
p[0] ==
':') && (
p[1] ==
'/') && (
p[2] ==
'/'));
640#define PHP_STREAM_IS_URL 1
644#define PHP_STREAM_META_TOUCH 1
645#define PHP_STREAM_META_OWNER_NAME 2
646#define PHP_STREAM_META_OWNER 3
647#define PHP_STREAM_META_GROUP_NAME 4
648#define PHP_STREAM_META_GROUP 5
649#define PHP_STREAM_META_ACCESS 6
printf(string $format, mixed ... $values)
dirname(string $path, int $levels=1)
count(Countable|array $value, int $mode=COUNT_NORMAL)
zend_ffi_ctype_name_buf buf
const php_stream_filter_ops * ops
#define PHP_ATTRIBUTE_FORMAT
#define PHP_RSHUTDOWN_FUNCTION
PHP_JSON_API size_t int options
struct _php_stream_filter_chain php_stream_filter_chain
PHPAPI zend_string * php_stream_get_record(php_stream *stream, size_t maxlen, const char *delim, size_t delim_len)
PHPAPI int _php_stream_free(php_stream *stream, int close_options)
PHPAPI int php_file_le_stream_filter(void)
struct _php_stream_wrapper_ops php_stream_wrapper_ops
struct _php_stream php_stream
struct _php_stream_context php_stream_context
PHPAPI const char * php_stream_locate_eol(php_stream *stream, zend_string *buf)
struct _php_stream_dirent php_stream_dirent
PHPAPI bool _php_stream_puts(php_stream *stream, const char *buf)
PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream)
PHPAPI bool _php_stream_eof(php_stream *stream)
PHPAPI int _php_stream_stat_path(const char *path, int flags, php_stream_statbuf *ssb, php_stream_context *context)
struct _php_stream_filter php_stream_filter
PHPAPI zend_string * _php_stream_copy_to_mem(php_stream *src, size_t maxlen, int persistent STREAMS_DC)
PHPAPI int _php_stream_rmdir(const char *path, int options, php_stream_context *context)
PHPAPI int _php_stream_putc(php_stream *stream, int c)
PHPAPI int _php_stream_flush(php_stream *stream, int closing)
PHPAPI int _php_stream_getc(php_stream *stream)
PHPAPI int _php_stream_cast(php_stream *stream, int castas, void **ret, int show_err)
PHPAPI zend_result _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *len STREAMS_DC)
PHPAPI zend_string * php_stream_read_to_str(php_stream *stream, size_t len)
PHPAPI char * _php_stream_get_line(php_stream *stream, char *buf, size_t maxlen, size_t *returned_len)
PHPAPI int _php_stream_truncate_set_size(php_stream *stream, size_t newsize)
PHPAPI int php_stream_dirent_alphasort(const zend_string **a, const zend_string **b)
PHPAPI int _php_stream_mkdir(const char *path, int mode, int options, php_stream_context *context)
PHPAPI zend_off_t _php_stream_tell(php_stream *stream)
PHPAPI HashTable * php_stream_get_url_stream_wrappers_hash_global(void)
PHPAPI int _php_stream_free_enclosed(php_stream *stream_enclosed, int close_options)
PHPAPI int php_stream_dirent_alphasortr(const zend_string **a, const zend_string **b)
PHPAPI zend_result _php_stream_fill_read_buffer(php_stream *stream, size_t size)
PHPAPI int _php_stream_set_option(php_stream *stream, int option, int value, void *ptrparam)
PHPAPI HashTable * _php_stream_get_url_stream_wrappers_hash(void)
PHPAPI ssize_t _php_stream_read(php_stream *stream, char *buf, size_t count)
PHPAPI HashTable * php_get_stream_filters_hash_global(void)
PHPAPI php_stream * php_stream_encloses(php_stream *enclosing, php_stream *enclosed)
PHPAPI zend_result php_register_url_stream_wrapper(const char *protocol, const php_stream_wrapper *wrapper)
struct _php_stream_ops php_stream_ops
void php_shutdown_stream_hashes(void)
PHPAPI zend_result php_unregister_url_stream_wrapper_volatile(zend_string *protocol)
int php_init_stream_wrappers(int module_number)
const php_stream_wrapper_ops * php_stream_user_wrapper_ops
PHPAPI int _php_stream_scandir(const char *dirname, zend_string **namelist[], int flags, php_stream_context *context, int(*compare)(const zend_string **a, const zend_string **b))
PHPAPI HashTable * _php_get_stream_filters_hash(void)
PHPAPI php_stream * _php_stream_alloc(const php_stream_ops *ops, void *abstract, const char *persistent_id, const char *mode STREAMS_DC)
PHPAPI int php_file_le_pstream(void)
PHPAPI ssize_t _php_stream_write(php_stream *stream, const char *buf, size_t count)
ZEND_ATTRIBUTE_DEPRECATED PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_DC)
PHPAPI php_stream * _php_stream_open_wrapper_ex(const char *path, const char *mode, int options, zend_string **opened_path, php_stream_context *context STREAMS_DC)
PHPAPI ssize_t _php_stream_printf(php_stream *stream, const char *fmt,...) PHP_ATTRIBUTE_FORMAT(printf
PHPAPI php_stream * _php_stream_opendir(const char *path, int options, php_stream_context *context STREAMS_DC)
struct _php_stream_wrapper php_stream_wrapper
PHPAPI zend_result php_unregister_url_stream_wrapper(const char *protocol)
PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence)
void php_shutdown_stream_wrappers(int module_number)
PHPAPI zend_result php_register_url_stream_wrapper_volatile(zend_string *protocol, php_stream_wrapper *wrapper)
PHPAPI php_stream_wrapper * php_stream_locate_url_wrapper(const char *path, const char **path_for_open, int options)
PHPAPI php_stream_dirent * _php_stream_readdir(php_stream *dirstream, php_stream_dirent *ent)
struct _php_stream_statbuf php_stream_statbuf
PHPAPI ssize_t _php_stream_passthru(php_stream *src STREAMS_DC)
PHPAPI int _php_stream_make_seekable(php_stream *origstream, php_stream **newstream, int flags STREAMS_DC)
PHPAPI int _php_stream_sync(php_stream *stream, bool data_only)
PHPAPI int _php_stream_stat(php_stream *stream, php_stream_statbuf *ssb)
PHPAPI void php_stream_wrapper_log_error(const php_stream_wrapper *wrapper, int options, const char *fmt,...) PHP_ATTRIBUTE_FORMAT(printf
PHPAPI int php_file_le_stream(void)
ssize_t(* read)(php_stream *stream, char *buf, size_t count)
int(* flush)(php_stream *stream)
ssize_t(* write)(php_stream *stream, const char *buf, size_t count)
int(* cast)(php_stream *stream, int castas, void **ret)
int(* set_option)(php_stream *stream, int option, int value, void *ptrparam)
int(* seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset)
int(* close)(php_stream *stream, int close_handle)
int(* stat)(php_stream *stream, php_stream_statbuf *ssb)
int(* stream_rmdir)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context)
int(* url_stat)(php_stream_wrapper *wrapper, const char *url, int flags, php_stream_statbuf *ssb, php_stream_context *context)
int(* stream_metadata)(php_stream_wrapper *wrapper, const char *url, int options, void *value, php_stream_context *context)
int(* stream_closer)(php_stream_wrapper *wrapper, php_stream *stream)
int(* rename)(php_stream_wrapper *wrapper, const char *url_from, const char *url_to, int options, php_stream_context *context)
int(* stream_stat)(php_stream_wrapper *wrapper, php_stream *stream, php_stream_statbuf *ssb)
int(* stream_mkdir)(php_stream_wrapper *wrapper, const char *url, int mode, int options, php_stream_context *context)
int(* unlink)(php_stream_wrapper *wrapper, const char *url, int options, php_stream_context *context)
const php_stream_wrapper_ops * wops
const php_stream_ops * ops
struct _php_stream * enclosing_stream
uint16_t fclose_stdiocast
php_stream_filter_chain writefilters
uint16_t has_buffered_data
uint16_t fclose_stdiocast_flush_in_progress
php_stream_filter_chain readfilters
php_stream_wrapper * wrapper
struct _zend_string zend_string
#define ZEND_ATTRIBUTE_DEPRECATED
struct _zend_resource zend_resource
struct _zend_array HashTable
ZEND_RESULT_CODE zend_result