From: Antony Dovgal Date: Tue, 26 Jun 2007 11:51:14 +0000 (+0000) Subject: fix ws X-Git-Tag: php-5.2.4RC1~289 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7210ab56957eb1523ac5d0acc00cf38b398a9b68;p=php fix ws --- diff --git a/ext/standard/var.c b/ext/standard/var.c index 99ab7dad41..820c3077f1 100644 --- a/ext/standard/var.c +++ b/ext/standard/var.c @@ -39,6 +39,7 @@ #define Z_REFCOUNT_PP(a) ((*a)->refcount) /* }}} */ + /* {{{ php_var_dump */ static int php_array_element_dump(zval **zv, int num_args, va_list args, zend_hash_key *hash_key) @@ -165,8 +166,6 @@ head_done: /* }}} */ - - /* {{{ proto void var_dump(mixed var) Dumps a string representation of variable to output */ PHP_FUNCTION(var_dump) @@ -344,7 +343,6 @@ PHP_FUNCTION(debug_zval_dump) } /* }}} */ - /* {{{ php_var_export */ static int php_array_element_export(zval **zv, int num_args, va_list args, zend_hash_key *hash_key) @@ -452,7 +450,6 @@ PHPAPI void php_var_export(zval **struc, int level TSRMLS_DC) /* }}} */ - /* {{{ proto mixed var_export(mixed var [, bool return]) Outputs or returns a string representation of a variable */ PHP_FUNCTION(var_export) @@ -477,8 +474,6 @@ PHP_FUNCTION(var_export) } /* }}} */ - - /* {{{ php_var_serialize */ static void php_var_serialize_intern(smart_str *buf, zval *struc, HashTable *var_hash TSRMLS_DC); @@ -872,6 +867,7 @@ PHP_FUNCTION(serialize) } /* }}} */ + /* {{{ proto mixed unserialize(string variable_representation) Takes a string representation of variable and recreates it */