summaryrefslogtreecommitdiff
path: root/main/php_variables.h
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagphp_ibase_before_splitSVN Migration2004-01-251-47/+0
| | | | 'php_ibase_before_split'.
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-2/+2
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* Fix use of EXTERN_C macrosArd Biesheuvel2003-09-021-2/+2
|
* linkage for C++Wez Furlong2003-08-181-1/+2
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Compiler warning fix.Ilia Alshanetsky2003-03-031-0/+1
|
* Add JIT initialization for _SERVER and _ENVZeev Suraski2003-03-021-0/+4
| | | | | | (it's less important for the others, even though it should be fairly easy now too)
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* make php_import_environment_variables overwritable so fastcgi can correctlyShane Caraveo2002-10-131-1/+1
| | | | | set $_ENV.
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-5/+5
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-5/+5
| | | | | | | - 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...
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Fix #7987: POST/GET: string with \0(%00) values not parsed correctlyStanislav Malyshev2000-12-121-0/+2
|
* @- In CGI mode, $HTTP_SERVER_VARS now includes all of the environment variablesZeev Suraski2000-11-071-1/+1
| | | | | @ as well (Zeev)
* Add additional parameter to parse_str for saving result (thanks toStanislav Malyshev2000-09-111-1/+1
| | | | | | John Bafford <dshadow@zort.net>) @ Added second parameter for parse_str to save result (John Bafford)
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-21/+11
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* Worked on beautifying rfc1867.c a bitZeev Suraski2000-02-191-0/+1
| | | | | | @- Introduced $HTTP_POST_FILES[], that contains information about files uploaded @ through HTTP upload (Zeev)
* Make POST handling the way it should be. RFC1867, and any future POST ↵Zeev Suraski2000-02-171-0/+1
| | | | | | | | | | handlers we might have in the future now obey to the variables_order directive, and there's a real way modular way to handle POST content. This is all untested, BEFORE_SAPI_POST_PATCH_17_FEB_2000 tagged before submission @- Made multipart/form-data content obey to the variables_order directive (Zeev)
* - Change the argument order of php_register_variable() to something moreZeev Suraski2000-01-291-1/+1
| | | | | | intuitive. - Make the authentication variables be a part of the HTTP_SERVER_VARS[] array
* Tried to centralize global variable registration as much as possible:Zeev Suraski2000-01-281-0/+47
- Added $HTTP_ENV_VARS[] and $HTTP_SERVER_VARS[] support, which similarly to $HTTP_GET_VARS[], contain environment and server variables. Setting register_globals to Off will now also prevent registration of the environment and server variables into the global scope (Zeev) - Renamed gpc_globals to register_globals (Zeev) - Introduced variables_order that deprecates gpc_order, and allows control over the server and environment variables, in addition to GET/POST/Cookies (Zeev)