#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)
/* }}} */
-
-
/* {{{ proto void var_dump(mixed var)
Dumps a string representation of variable to output */
PHP_FUNCTION(var_dump)
}
/* }}} */
-
/* {{{ php_var_export */
static int php_array_element_export(zval **zv, int num_args, va_list args, zend_hash_key *hash_key)
/* }}} */
-
/* {{{ proto mixed var_export(mixed var [, bool return])
Outputs or returns a string representation of a variable */
PHP_FUNCTION(var_export)
}
/* }}} */
-
-
/* {{{ php_var_serialize */
static void php_var_serialize_intern(smart_str *buf, zval *struc, HashTable *var_hash TSRMLS_DC);
}
/* }}} */
+
/* {{{ proto mixed unserialize(string variable_representation)
Takes a string representation of variable and recreates it */