diff options
author | Pierre Joye <pajoye@php.net> | 2010-07-13 18:53:12 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-07-13 18:53:12 +0000 |
commit | e246625a57d0877fce298aae06954adc8ae615fb (patch) | |
tree | 260e33876760a2e157da794c4a1dedb83c49405d /ext/standard/php_var.h | |
parent | e92d4a936d4c722ae09d5197d6c1465bcc8d5b0d (diff) | |
download | php-git-e246625a57d0877fce298aae06954adc8ae615fb.tar.gz |
- MFH: Fix a bug when var_export() causes a fatal error that could inadvertently display data due to flushing of the output buffer.
Diffstat (limited to 'ext/standard/php_var.h')
-rw-r--r-- | ext/standard/php_var.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/php_var.h b/ext/standard/php_var.h index 1e19ed5f97..44988913b3 100644 --- a/ext/standard/php_var.h +++ b/ext/standard/php_var.h @@ -33,6 +33,8 @@ PHP_FUNCTION(memory_get_peak_usage); PHPAPI void php_var_dump(zval **struc, int level TSRMLS_DC); PHPAPI void php_var_export(zval **struc, int level TSRMLS_DC); +PHPAPI void php_var_export_ex(zval **struc, int level, smart_str *buf TSRMLS_DC); + PHPAPI void php_debug_zval_dump(zval **struc, int level TSRMLS_DC); /* typdef HashTable php_serialize_data_t; */ |