diff options
Diffstat (limited to 'ext/standard/php_var.h')
-rw-r--r-- | ext/standard/php_var.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/standard/php_var.h b/ext/standard/php_var.h index d3bbcc9e8d..a65cb32c97 100644 --- a/ext/standard/php_var.h +++ b/ext/standard/php_var.h @@ -24,6 +24,7 @@ #include "ext/standard/php_smart_str_public.h" PHP_FUNCTION(var_dump); +PHP_FUNCTION(var_inspect); PHP_FUNCTION(var_export); PHP_FUNCTION(debug_zval_dump); PHP_FUNCTION(serialize); @@ -32,9 +33,9 @@ PHP_FUNCTION(unserialize); PHP_FUNCTION(memory_get_usage); #endif -PHPAPI void php_var_dump(zval **struc, int level TSRMLS_DC); +PHPAPI void php_var_dump(zval **struc, int level, int verbose TSRMLS_DC); PHPAPI void php_var_export(zval **struc, int level TSRMLS_DC); -PHPAPI void php_debug_zval_dump(zval **struc, int level TSRMLS_DC); +PHPAPI void php_debug_zval_dump(zval **struc, int level, int verbose TSRMLS_DC); /* typdef HashTable php_serialize_data_t; */ #define php_serialize_data_t HashTable |