#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include "php.h"
#include "php_string.h"
#include "php_var.h"
#include "zend_lazy_objects.h"
#include "zend_smart_str.h"
#include "basic_functions.h"
#include "php_incomplete_class.h"
#include "zend_enum.h"
#include "zend_exceptions.h"
#include "zend_types.h"
Go to the source code of this file.
|
PHPAPI void | php_var_dump (zval *struc, int level) |
|
| PHP_FUNCTION (var_dump) |
|
PHPAPI void | php_debug_zval_dump (zval *struc, int level) |
|
| PHP_FUNCTION (debug_zval_dump) |
|
PHPAPI zend_result | php_var_export_ex (zval *struc, int level, smart_str *buf) |
|
PHPAPI void | php_var_export (zval *struc, int level) |
|
| PHP_FUNCTION (var_export) |
|
PHPAPI void | php_var_serialize (smart_str *buf, zval *struc, php_serialize_data_t *data) |
|
PHPAPI php_serialize_data_t | php_var_serialize_init (void) |
|
PHPAPI void | php_var_serialize_destroy (php_serialize_data_t d) |
|
| PHP_FUNCTION (serialize) |
|
PHPAPI void | php_unserialize_with_options (zval *return_value, const char *buf, const size_t buf_len, HashTable *options, const char *function_name) |
|
| PHP_FUNCTION (unserialize) |
|
| PHP_FUNCTION (memory_get_usage) |
|
| PHP_FUNCTION (memory_get_peak_usage) |
|
| PHP_FUNCTION (memory_reset_peak_usage) |
|
| PHP_MINIT_FUNCTION (var) |
|
◆ buffer_append_spaces
#define buffer_append_spaces |
( |
| buf, |
|
|
| num_spaces ) |
Value: do { \
char *tmp_spaces; \
size_t tmp_spaces_len; \
tmp_spaces_len =
spprintf(&tmp_spaces, 0,
"%*c", num_spaces,
' '); \
smart_str_appendl(
buf, tmp_spaces, tmp_spaces_len); \
efree(tmp_spaces); \
} while(0);
zend_ffi_ctype_name_buf buf
Definition at line 444 of file var.c.
◆ COMMON
#define COMMON (is_ref ? "&" : "") |
Definition at line 40 of file var.c.
◆ php_debug_zval_dump()
◆ PHP_FUNCTION() [1/8]
◆ PHP_FUNCTION() [2/8]
◆ PHP_FUNCTION() [3/8]
◆ PHP_FUNCTION() [4/8]
◆ PHP_FUNCTION() [5/8]
PHP_FUNCTION |
( |
serialize | | ) |
|
◆ PHP_FUNCTION() [6/8]
PHP_FUNCTION |
( |
unserialize | | ) |
|
◆ PHP_FUNCTION() [7/8]
◆ PHP_FUNCTION() [8/8]
◆ PHP_MINIT_FUNCTION()
PHP_MINIT_FUNCTION |
( |
var | | ) |
|
◆ php_unserialize_with_options()
PHPAPI void php_unserialize_with_options |
( |
zval * | return_value, |
|
|
const char * | buf, |
|
|
const size_t | buf_len, |
|
|
HashTable * | options, |
|
|
const char * | function_name ) |
◆ php_var_dump()
◆ php_var_export()
◆ php_var_export_ex()
◆ php_var_serialize()
◆ php_var_serialize_destroy()
◆ php_var_serialize_init()