History log of /PHP-7.2/ext/standard/var.c (Results 326 – 350 of 417)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1be0975d 09-Jul-2001 Thies C. Arntzen

added test for serialize
changed var.c to use Z_* macros


# 4aa6ae49 01-Jul-2001 Daniel Beulshausen

PHPAPI-ize php_var_* functions
# need this for shm*


Revision tags: PRE_GRANULAR_GARBAGE_FIX, php-4.0.6, php-4.0.6RC4, php-4.0.6RC3
# 81e2cf03 06-Jun-2001 Rasmus Lerdorf

Fix folding and clean up some extensions


# 25c3a3a3 05-Jun-2001 Rasmus Lerdorf

vim-6 does folding - clean up a bunch of missing folding tags plus
some misguided RINIT and RSHUTDOWN calls in a few fringe extensions


Revision tags: php-4.0.6RC2
# ca8c8264 29-May-2001 Stanislav Malyshev

Fix the reference serializer
# Hope now it is right...


Revision tags: php-4.0.6RC1, php-4.0.5, php-4.0.5RC8, php-4.0.5RC7, php-4.0.5RC6, php-4.0.5RC5, php-4.0.5RC4, php-4.0.5RC3, php-4.0.5RC2, php-4.0.5RC1
# eb6ba01d 26-Feb-2001 Andi Gutmans

- Fix copyright notices with 2001


Revision tags: php-4.0.4pl1, php-4.0.4pl1RC2
# dbb3402c 09-Jan-2001 Sascha Schumann

php_add_var_hash() uses sizeof(id) in the calls to zend_hash_*, implying
that all bytes in the character array have been set (they are used
to compute the hash value using hashpjw).

php_add_var_hash() uses sizeof(id) in the calls to zend_hash_*, implying
that all bytes in the character array have been set (they are used
to compute the hash value using hashpjw).

The function assumes that sprintf's %p modifier would always prefix
the output with "0x". On HPUX, this is not the case. Hence, not
all bytes may be properly initialized before being read.

This has been addressed by using only initialized bytes as the key.

show more ...


Revision tags: php-4.0.4pl1RC1
# 3a16dc1c 24-Dec-2000 Sascha Schumann

Fix segfault introduced through recent zend_hash_get_current_key* changes.


# aa6d2ac5 22-Dec-2000 Zeev Suraski

Heads up people!

Updated the get_current_key() API - the relevant authors, please take
a look at the updated code and make sure it's ok...


Revision tags: php-4.0.4REL, php-4.0.4RC6, php-4.0.4RC5, php-4.0.4RC4
# be895bcb 13-Dec-2000 Zeev Suraski

Fix call_user_function() with objects - it could leak under certain circumstances


# a1c20a04 11-Dec-2000 Stanislav Malyshev

Fix serializer bug that prevented serializer from working on any
variable that had non-reference copies of the same zval


# 889b717a 11-Dec-2000 Thies C. Arntzen

fix #6348


Revision tags: php-4.0.4RC3
# c9e39592 07-Nov-2000 Stanislav Malyshev

Andi says it should be zval_ptr_dtor


# cde5c779 06-Nov-2000 Stanislav Malyshev

And now the right fix - should add it still


# 7f1dc855 06-Nov-2000 Stanislav Malyshev

Serialize as reference only if it's a true reference


# c31faf0b 30-Oct-2000 Stanislav Malyshev

Add support for serializing references.
@- Add support for serializing references (Stas)
# WDDX and shared memory functions not covered yet


# 825457ae 29-Oct-2000 Thies C. Arntzen

update my email.


# 7b4983c8 20-Oct-2000 Andrei Zmievski

Mega-patch to get better resource information for modules.
* Fixed a bug in zend_rsrc_list_get_rsrc_type()
* Switched register_list_destructors() to use
zend_register_list_destruc

Mega-patch to get better resource information for modules.
* Fixed a bug in zend_rsrc_list_get_rsrc_type()
* Switched register_list_destructors() to use
zend_register_list_destructors_ex() instead
* Updated all relevant modules to provide the resource type name
to register_list_destructors() call
* Updated var_dump() to output resource type name instead of number

@- Made resource type names visible, e.g. var_dump() and
@ get_resource_type() display "file" for file resources. (Andrei)

show more ...


# 9f71179c 18-Oct-2000 Sascha Schumann

Back out circular references protection patch.

This causes problems with serializing regular variables and object
properties.

We need a smarter way to tell whether we have seria

Back out circular references protection patch.

This causes problems with serializing regular variables and object
properties.

We need a smarter way to tell whether we have serialized one node
already.

PR: #7291, #7294

show more ...


Revision tags: php-4.0.3, php-4.0.3RC2, php-4.0.3RC1
# 4b89b67d 29-Sep-2000 Sascha Schumann

Don't try to serialize references.

Circular references would otherwise kill PHP, as the serializer
would overrun the stack.


Revision tags: php-4.0.2
# b1d4fcb3 29-Aug-2000 Thies C. Arntzen

fix var_dump()s "}"-indention


Revision tags: PRE_LIBMYSQL_REVERT, php-4.0.2RC1, PRE_FILE_COMPILE_API_CHANGE, PRE_METHOD_CALL_SEPERATE_FIX_PATCH
# 740fc2f5 29-Jun-2000 Stanislav Malyshev

Lowercase class name before looking for it


Revision tags: php-4.0.1pl1, php-4.0.1, php-4.0.1RC2, php-4.0.1RC
# 1702067a 23-Jun-2000 Sascha Schumann

API change: Use zval * instead of zval **


# 091dc384 23-Jun-2000 Sascha Schumann

Move the incomplete class stuff into its own file, so that we can
make it easier accessible to WDDX.


# 2297f670 23-Jun-2000 Sascha Schumann

Change the serialization semantics to:

* if a certain object is of class INCOMPLETE_CLASS, the serializer will
lookup the previously stored original class name of that object, and

Change the serialization semantics to:

* if a certain object is of class INCOMPLETE_CLASS, the serializer will
lookup the previously stored original class name of that object, and
use that class name to serialize the object.

Change the deserialization semantics to:

* if the class of an object, which is to be instantiated, is not found
in the current context, the class name will be stored for later
retrieval, and the class of that object is changed to INCOMPLETE_CLASS.

All function calls, property gets, and property sets operating on an
object of class INCOMPLETE_CLASS cause the execution to halt and to
output an informative error message.

show more ...


1...<<11121314151617