History log of /PHP-7.4/main/output.c (Results 226 – 250 of 314)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.2.1RC1
# 68e5f549 24-Apr-2002 Stanislav Malyshev

Init output_start_* to avoid "output started at ZZZZZ" messages
(which may result when output started while zend is neither compiling nor
executing - e.g., when file upload fails).


Revision tags: php-4.2.0, php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2, php-4.2.0RC1, help
# 57472aa3 04-Mar-2002 Jon Parise

Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).


# bff90c71 02-Mar-2002 Hartmut Holzgraefe

typo fix


# 46bb7e00 01-Mar-2002 Yasuo Ohgaki

Do explicit test againt to FAILURE.
# Thanks Rasmus.


# 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 ...


Revision tags: php-4.1.2
# 88e3aa7a 07-Feb-2002 Yasuo Ohgaki

Legacy code removed.
This line incorrectly removes buffer.
This line was correct only when ouput.c does not support
nested output buffers. Fixed bug #15178


# a3e676f6 05-Feb-2002 Yasuo Ohgaki

pval -> zval
Check number of parameters


Revision tags: BEFORE_NEW_OBJECT_MODEL, PRE_ISSET_PATCH, php-4.1.1, PRE_FUNC_RETURNS_OBJECT_PATCH, ChangeLog
# 38933514 11-Dec-2001 Sebastian Bergmann

Update headers.


Revision tags: php-4.1.0, php-4.1.0RC5
# 1f14640b 03-Dec-2001 Derick Rethans

- Added ob_get_level, which returns the nesting level of the output buffering
mechanism. (patch by Yasuo Ohgaki <yasuo_ohgaki@yahoo.com>)
@- Added ob_get_level, which returns the nesting le

- Added ob_get_level, which returns the nesting level of the output buffering
mechanism. (patch by Yasuo Ohgaki <yasuo_ohgaki@yahoo.com>)
@- Added ob_get_level, which returns the nesting level of the output buffering
@ mechanism. (Yasuo, Derick)

show more ...


Revision tags: php-4.1.0RC4
# 9190271c 30-Nov-2001 Derick Rethans

- Added ob_flush and ob_clean functions, which do not end the buffer like
ob_end_flush and ob_end_clean do.
@- Added ob_flush and ob_clean functions, which flush and clean an
@ output

- Added ob_flush and ob_clean functions, which do not end the buffer like
ob_end_flush and ob_end_clean do.
@- Added ob_flush and ob_clean functions, which flush and clean an
@ output buffer without destroying the buffer. (Derick)

show more ...


Revision tags: php-4.1.0RC3, php-4.1.0RC2, POST_PARAMETER_PARSING_API, PRE_PARAMETER_PARSING_API, php-4.1.0RC1, php4, php-4.0.7RC3, POST_SUBST_Z_MACROS
# c0332885 25-Sep-2001 Jeroen van Wolffelaar

Back-substitute for Z_* macro's. If it breaks some extension (the script isn't optimal, it parses for example var->zval.value incorrect) please let me know.


Revision tags: PRE_SUBST_Z_MACROS
# 78747bd2 09-Sep-2001 Derick Rethans

- Don't wrap lines... this is annoying while coding.


Revision tags: php-4.0.7RC2
# 357dfd5f 31-Aug-2001 Zeev Suraski

Support multiple chunked output buffering layers


# 5c1c2276 31-Aug-2001 Zeev Suraski

Fix double freeing


# 13ff1832 25-Aug-2001 Zeev Suraski

Move the trans-sid mechanism to use the output buffering mechanism.
Advantages:
- Would work with the output buffering mechanism in general, and with
output compression in particular

Move the trans-sid mechanism to use the output buffering mechanism.
Advantages:
- Would work with the output buffering mechanism in general, and with
output compression in particular
- Should yield better performance (untested as of yet)

show more ...


Revision tags: php-4.0.7RC1, BEFORE_EXP_MERGE
# e077c6bc 11-Aug-2001 Zeev Suraski

Make it possible to enable chunked output buffering without providing
an output handling function


Revision tags: PRE_METHOD_DEREFERENCE_PATCH, BEFORE_PARAM_PARSING_CHANGE, PRE_ENGINE2_SPLIT
# 373b3e10 05-Aug-2001 Sascha Schumann

more tsrm cleanup -- output.c is not doing any fetches anymore


# 8aef1930 05-Aug-2001 Sascha Schumann

more tsrm cleanup


# aafdfe82 05-Aug-2001 Sascha Schumann

further tsrm cleanup


# 1159c84a 05-Aug-2001 Zeev Suraski

- TSRMLS_FETCH work
- whitespace fixes


# bc42c375 31-Jul-2001 Zeev Suraski

More TSRMLS_FETCH work. Got it under 400 now.


# c43806f4 30-Jul-2001 Zeev Suraski

Zend compatibility patch


# d87cc976 28-Jul-2001 Zeev Suraski

Redesigned thread safety mechanism - nua nua


# fe6f8712 27-Jul-2001 Zeev Suraski

- Get rid of ELS_*(), and use TSRMLS_*() instead.
- Move to the new ts_allocate_id() API
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any unco

- Get rid of ELS_*(), and use TSRMLS_*() instead.
- Move to the new ts_allocate_id() API
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any uncommon extension, please try to build it...

show more ...


Revision tags: PRE_TSRM_MERGE_PATCH
# 6f297a37 20-Jul-2001 Zeev Suraski

Fix Windows build


12345678910>>...13