History log of /PHP-8.2/ext/standard/var.c (Results 376 – 400 of 530)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: PHP_5_0_dev_before_13561_fix, PHP_4_3_before_13561_fix
# 309ef518 18-Jan-2003 Andrey Hristov

Renamed get_memory_usage() to memory_get_usage() (per Andi's advice)
This doesn't break any BC.

# 7866f022 14-Jan-2003 Andrey Hristov

added function get_memory_usage(). available only when PHP is compiled
with --enable-memory-limit

# bcc1e5a7 12-Jan-2003 Stanislav Malyshev

remove unneeded var

# b506f5c8 31-Dec-2002 Sebastian Bergmann

Bump year.

Revision tags: php-4.3.0, php-4.3.0RC4, RELEASE_1_0b3, php-4.3.0RC3
# 49a99a98 05-Dec-2002 Marcus Boerger

-php_error -> php_error_docref
-removed some cases where emalloc result was tested

Revision tags: php-4.3.0RC2, RELEASE_1_0b2, BEFORE_RENAMING, php-4.3.0RC1, php-4.3.0pre2, RELEASE_1_0b1
# e06550f8 11-Oct-2002 Derick Rethans

- Fix problem with var_export when objects with numeric indexes were
exported. We now skip those, as there is no way to export valid code for
it.

Revision tags: php-4.3.0pre1
# df55f357 06-Oct-2002 Zeev Suraski

Revert the implicit_flush mess.

Do not revert it again under any circumstances!

Yasuo/anybody else - if there are issues with implicit_flush, please inform
me and I will fix the

Revert the implicit_flush mess.

Do not revert it again under any circumstances!

Yasuo/anybody else - if there are issues with implicit_flush, please inform
me and I will fix them.

show more ...

# 39b0eb9b 03-Oct-2002 Yasuo Ohgaki

Fixed broken code by Derick.
ob_implicit_flush() and ob_flush_all() are stopped working.
var_dump() and hightlisht_string() outputs buffer contents wrongly
with ob_implicit_flush().

Fixed broken code by Derick.
ob_implicit_flush() and ob_flush_all() are stopped working.
var_dump() and hightlisht_string() outputs buffer contents wrongly
with ob_implicit_flush().

Everyone should be happy now.
It was only OG(implicit_flush) interpretation issue after all.

show more ...

# 9b517c4b 03-Oct-2002 Derick Rethans

- Revert changed to implicit_flush behavior. The new behavior was not
intended in the first place.

# 17317672 03-Oct-2002 Yasuo Ohgaki

Prevent unwanted fluhsing.

Revision tags: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003, RELEASE_0_91, php-4.3.0dev_zend2_alpha3, php-4.2.3, php-4.2.3RC2, php-4.2.3RC1, dev, php-4.2.2, INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2
# 1f58a8f0 26-Jun-2002 Andi Gutmans

- No idea why this wasn't crashing before.

# ba5257a2 18-Jun-2002 Derick Rethans

- Fix for bug #16065

Revision tags: php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1, php-4.2.1RC2, php-4.2.1RC1
# 11df2122 29-Apr-2002 Stanislav Malyshev

Add comments for the fix

# 91a78e29 29-Apr-2002 Stanislav Malyshev

Fix here too

# aa10ac9a 29-Apr-2002 Stanislav Malyshev

Yet another serialization fix - for incomplete class

# a57381e3 28-Apr-2002 Stanislav Malyshev

Fix couple of nasty serializer bugs:
a) When array unserializer encounters less data than it expects (like:
a:1:{}) it crashes. I don't understand exactly why it does, but the fact
is it

Fix couple of nasty serializer bugs:
a) When array unserializer encounters less data than it expects (like:
a:1:{}) it crashes. I don't understand exactly why it does, but the fact
is it does. So now it should catch "}" and bail out.
b) When array/object data are serialized, the count is written by hash
count. However, it can be that in-loop check fails and less data than
expected will then be written into the array. Which, due to a), would
crash on unserialize. So now it will write empty entries in place of
entries it cannot serialize (the other choice would be make two passes on
the data, which I don't like).

show more ...

Revision tags: php-4.2.0
# d30fc27e 21-Apr-2002 Sascha Schumann

simplify and improve speed of smart_str_print_long.

also add a variant for unsigned numbers.

Revision tags: php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2, php-4.2.0RC1
# 3550d75d 19-Mar-2002 Thies C. Arntzen

fix #12793 - serialize will now spit a notice if the return value of __sleep is
bogus.

# 1cc6a8e9 15-Mar-2002 Wez Furlong

it's late; no more commits from me tonight...

# 0454ad4d 15-Mar-2002 Wez Furlong

should have diffed first...

# ae9db4e4 15-Mar-2002 Wez Furlong

fix for ZE2 compile

# 7935e737 14-Mar-2002 Derick Rethans

- Fix bug #16078

# 93ad2057 14-Mar-2002 Wez Furlong

fix buglet

# dcd86d15 14-Mar-2002 Yasuo Ohgaki

Fixed var_dump() crash when there is recursion.
# Since I said it's easy to fix :)

Revision tags: help
# 82a8d372 01-Mar-2002 Yasuo Ohgaki

Added ob_get_status() to get array of buffers and it's status.
(DO NOT document this function yet)

Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that m

Added ob_get_status() to get array of buffers and it's status.
(DO NOT document this function yet)

Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
buffers that may not be deleted.

php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for
if the buffer created may be deleted or not.

Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
deleted until script finshes.

Changed ob_*() function that have void return type to bool. All ob_*()
functions return TRUE for success, FALSE for failure.

@ - Added ob_get_status() to get array of buffers and it's status. (Yasuo)
@ - Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
@ buffers that may not be deleted. (Yasuo)
@ - Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
@ deleted until script finshes. (Yasuo)
@ - Changed ob_*() function that have void return type to bool. All ob_*()
@ functions return TRUE for success, FALSE for failure. (Yasuo)

show more ...

1...<<11121314151617181920>>...22