diff options
author | Antony Dovgal <tony2001@php.net> | 2007-06-26 11:51:14 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-06-26 11:51:14 +0000 |
commit | 7210ab56957eb1523ac5d0acc00cf38b398a9b68 (patch) | |
tree | f3ea87a6d4bd00873239d6f5b58cd7c70bbfec66 /ext/standard/var.c | |
parent | 58ac8d559d6cb22b8ca071ca08ec6ee52a5cc51c (diff) | |
download | php-git-7210ab56957eb1523ac5d0acc00cf38b398a9b68.tar.gz |
fix ws
Diffstat (limited to 'ext/standard/var.c')
-rw-r--r-- | ext/standard/var.c | 8 |
1 files changed, 2 insertions, 6 deletions
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 */ |