History log of /PHP-5.5/ext/standard/head.c (Results 101 – 125 of 132)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# e5a2f0f9 17-May-2000 Hartmut Holzgraefe

proto-takeover from php3


Revision tags: php-4.0RC2
# 3220bb57 28-Apr-2000 Zeev Suraski

- Fix an invalid trick (it was valid when header() was using
zend_get_parameters(), but it became invalid when someone switched it
to zend_get_parameters_ex(), and I decided to remove it

- Fix an invalid trick (it was valid when header() was using
zend_get_parameters(), but it became invalid when someone switched it
to zend_get_parameters_ex(), and I decided to remove it anyway).
- Remove a redundant function call

show more ...


Revision tags: PHP-4.0-RC1
# 99e0b363 06-Mar-2000 Stig Bakken

@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single
extension.


Revision tags: php-4.0b4pl1, php-4.0b4, php-4.0b4_rc1
# 86fa2aad 19-Feb-2000 Zeev Suraski

the pipe is breaking all the time


Revision tags: BEFORE_SAPI_POST_PATCH_17_FEB_2000
# 6d0ab616 10-Feb-2000 Zeev Suraski

SAPIfication, Episode VI: Return of the SAPI
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except f

SAPIfication, Episode VI: Return of the SAPI
Remove mostly all references to APACHE and CGI_BINARY from the code.

- Apache include files are no longer included by any PHP code, except for the Apache SAPI module.
- No server specific code is in any of the base PHP code.

Still left to be done:
- Eliminate any references to APACHE from the few remaining modules.
- Move request_info.c's logic to SAPI
- Modify the regex function names, and globals, so that we can always
include them, without having to fear any interference with Apache;
Always use the bundled regex library

show more ...


Revision tags: BEFORE_SAPIFICATION_FEB_10_2000
# 59e466d5 06-Feb-2000 Thies C. Arntzen

fix for #3413
@- Fixed possible buffer-overflow in setcookie(). (Thies)


# fc678100 28-Jan-2000 Zeev Suraski

post.c really had nothing to do with POST anymore, and it belongs to the top level directory


Revision tags: BEFORE_PRE_SHUTDOWN_REVERSE_PATCH
# 972631be 13-Jan-2000 Zeev Suraski

- Added flush() support to SAPI
- Got rid of the old flush() implemenetation in favour of the new one
- Added implicit_flush() support to the output buffering layer.
@- Added implicit_flu

- Added flush() support to SAPI
- Got rid of the old flush() implemenetation in favour of the new one
- Added implicit_flush() support to the output buffering layer.
@- Added implicit_flush() to control whether flush() should be called
@ implicitly after any output (Zeev)

show more ...


# 43ae2bff 01-Jan-2000 Sascha Schumann

Happy Y2K patch! Happy new year (or the new millennium, depending on whether
you start counting at 0 or 1).


Revision tags: PRE_ISSET_TYPE
# f5d5637f 20-Dec-1999 Evan Klinger

Ex API


Revision tags: PRE_LIBZEND_TO_ZEND
# 3ee4e65c 18-Dec-1999 Zeev Suraski

More php3_ annihilation


# fb1c77bd 17-Dec-1999 Zeev Suraski

- Made PHP_VERSION and PHP_OS work again
- More php3_ cleanup
@- Restored the PHP_VERSION and PHP_OS constants (Zeev)


# a3c65143 17-Dec-1999 Zeev Suraski

More php3_ annihilation


Revision tags: PRE_RETURN_REF_MERGE, RETURN_REF_BP, PRE_RETURN_REF_PATCH
# 5b983c94 04-Dec-1999 Sascha Schumann

Clean up php3.*\.h files. The files itself are renamed, and references in all
.*\.[ch] files were changed. There is a slight chance that my script missed
a few changes, please correct them ma

Clean up php3.*\.h files. The files itself are renamed, and references in all
.*\.[ch] files were changed. There is a slight chance that my script missed
a few changes, please correct them manually.

show more ...


Revision tags: ZO_B1, ZEND_OPTIMIZER_B1, php-4.0b3, PRE_USED_RETURN_VALUE_PATCH, php-4.0b3_RC5, php-4.0b3_RC4, php-4.0b3_RC3, php-4.0b3_RC2, PRE_FETCH_READ_PATCH, before-sapi-split, PRE_DELAYED_ARRAY_FETCH_PATCH, php-4.0b2
# 3cb1eb04 02-Aug-1999 Zeev Suraski

Removed '3' from key functions in PHP (maintained compatibility through
php3_compat.h)


# 1b2c932c 26-Jul-1999 Andrey Hristov

More symbol work.

I've defined a few macros to help with module/request init/startup function definitions.
Basically:

PHP_MINIT_FUNCTION(module)
PHP_MSHUTDOWN_FUNCTION(modul

More symbol work.

I've defined a few macros to help with module/request init/startup function definitions.
Basically:

PHP_MINIT_FUNCTION(module)
PHP_MSHUTDOWN_FUNCTION(module)
PHP_RINIT_FUNCTION(module)
PHP_RSHUTDOWN_FUNCTION(module)
PHP_MINFO_FUNCTION(module)

These will expand to proper function prototypes.

Now to specify these in the module entry, use:

PHP_MINIT(module)
PHP_MSHUTDOWN(module)
PHP_RINIT(module)
PHP_RSHUTDOWN(module)
PHP_MINFO(module)

I've updated all modules in ext/standard and everything from ext/apache to ext/db.
If you can, please update your module to use these macros.

show more ...


Revision tags: BEFORE_NEW_OPERATOR_FIX
# 736f4831 24-Jul-1999 Andrey Hristov

A bunch of grunt work updating function entries and declarations.


Revision tags: BEFORE_BIG_SYMBOL_CHANGE, php-4.0b1
# 2d1b6f08 20-Jul-1999 Andrey Hristov

Added headers_sent() function


# c5724cbd 16-Jul-1999 Zeev Suraski

License update


Revision tags: BEFORE_REMOVING_AI_COUNT_FINAL_STEP, BEFORE_REMOVING_GC_STEP2, BEFORE_REMOVING_GC_STEP1, BEFORE_PHP4_APACHE_MODULE_CHANGE
# 39691bed 16-May-1999 Sascha Schumann

conv_proto *.[ch]


# ceeb9b38 11-May-1999 Zeev Suraski

* Finally commit that -q patch
* Refine SAPI built in header support
* Use DllMain() in ISAPI to clean after threads and initialize tsrm/sapi as soon as possible.


# bc415d5a 09-May-1999 Zeev Suraski

* Finalizing the PHP version of SAPI. Support POST and cookies among other things.
* Fully implement ISAPI support - POST and cookies among other things.
* Almost completely rewrote phpinfo(

* Finalizing the PHP version of SAPI. Support POST and cookies among other things.
* Fully implement ISAPI support - POST and cookies among other things.
* Almost completely rewrote phpinfo(). Allow modules to easily display their
information in phpinfo() without modifying phpinfo() itself (prototype for
the module info function was changed, thus the large amount of updated module
files).
* Initial extended SAPI support for Apache, completely untested.
* CGI now uses SAPI fully as well.

show more ...


# 6f1c6118 05-May-1999 Zeev Suraski

Fixes


# aee864e9 05-May-1999 Zeev Suraski

Get CGI to work with the new headers code.
Now Apache is the only interface that doesn't use it.


# 537cc54a 05-May-1999 Andi Gutmans

Added initial headers support in SAPI
*untested*
It definitely broke the thread-safe CGI, it may have broken other stuff as well.


123456