summaryrefslogtreecommitdiff
path: root/ext/standard/php_var.h
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-07-13 18:53:12 +0000
committerPierre Joye <pajoye@php.net>2010-07-13 18:53:12 +0000
commite246625a57d0877fce298aae06954adc8ae615fb (patch)
tree260e33876760a2e157da794c4a1dedb83c49405d /ext/standard/php_var.h
parente92d4a936d4c722ae09d5197d6c1465bcc8d5b0d (diff)
downloadphp-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.h2
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; */