#include "php.h"
#include "SAPI.h"
#include "php_ini.h"
#include "ext/standard/info.h"
#include "php_zlib.h"
#include "zlib_arginfo.h"
Go to the source code of this file.
◆ PHP_ZLIB_DECODE_FUNC
Value:
{ \
char *in_buf, *out_buf; \
size_t in_len; \
size_t out_len; \
RETURN_THROWS(); \
} \
if (max_len < 0) { \
zend_argument_value_error(2, "must be greater than or equal to 0"); \
RETURN_THROWS(); \
} \
if (
SUCCESS != php_zlib_decode(in_buf, in_len, &out_buf, &out_len,
encoding, max_len)) { \
} \
RETVAL_STRINGL(out_buf, out_len); \
efree(out_buf); \
}
xmlCharEncodingHandlerPtr encoding
ZEND_API zend_result zend_parse_parameters(uint32_t num_args, const char *type_spec,...)
Definition at line 734 of file zlib.c.
◆ PHP_ZLIB_ENCODE_FUNC
#define PHP_ZLIB_ENCODE_FUNC |
( |
| name, |
|
|
| default_encoding ) |
◆ Z_DEFLATE_CONTEXT_P
Value:
Definition at line 93 of file zlib.c.
◆ Z_INFLATE_CONTEXT_P
Value:
Definition at line 55 of file zlib.c.
◆ PHP_FUNCTION() [1/11]
◆ PHP_FUNCTION() [2/11]
◆ PHP_FUNCTION() [3/11]
◆ PHP_FUNCTION() [4/11]
◆ PHP_FUNCTION() [5/11]
◆ PHP_FUNCTION() [6/11]
◆ PHP_FUNCTION() [7/11]
◆ PHP_FUNCTION() [8/11]
◆ PHP_FUNCTION() [9/11]
◆ PHP_FUNCTION() [10/11]
◆ PHP_FUNCTION() [11/11]
◆ PHP_ZLIB_DECODE_FUNC() [1/4]
◆ PHP_ZLIB_DECODE_FUNC() [2/4]
◆ PHP_ZLIB_DECODE_FUNC() [3/4]
◆ PHP_ZLIB_DECODE_FUNC() [4/4]
◆ PHP_ZLIB_ENCODE_FUNC() [1/4]
◆ PHP_ZLIB_ENCODE_FUNC() [2/4]
◆ PHP_ZLIB_ENCODE_FUNC() [3/4]
◆ PHP_ZLIB_ENCODE_FUNC() [4/4]
◆ deflate_context_ce
◆ inflate_context_ce
◆ php_zlib_module_entry
Initial value:= {
"zlib",
ext_functions,
}
#define PHP_MODULE_GLOBALS
#define STANDARD_MODULE_HEADER
#define STANDARD_MODULE_PROPERTIES_EX
Definition at line 1429 of file zlib.c.