summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* - URL-opened files now store the HTTP response header in $http_response_headerZeev Suraski2000-10-283-20/+87
| | | | | - Some layout updates
* Fixed PR: 6730. And it is mentioned also in RFC 959 to be this way.foobar2000-10-271-1/+1
|
* Fixes PR: 7245foobar2000-10-271-1/+1
|
* Making _php_math_longtobase() and _php_math_basetolong() callable from DLL ↵Frank M. Kromann2000-10-271-2/+2
| | | | and SO modules
* New e-mail address.Sterling Hughes2000-10-277-7/+7
|
* @- Fixed array_rand() to shuffle results when the number of requestedAndrei Zmievski2000-10-271-0/+7
| | | | | @ elements is the same as the number of elements in the array. (Andrei)
* type fixes to make compilers happyHartmut Holzgraefe2000-10-271-2/+2
|
* Allow strings to be passed to methods expecting primitive types.Sam Ruby2000-10-272-4/+32
|
* Allow users to specify whether they want to replace existing header fields.Sascha Schumann2000-10-271-6/+14
|
* - added four functions to do fulltext queryUwe Steinmann2000-10-274-1/+601
|
* it won't work otherwiseDaniel Beulshausen2000-10-262-2/+4
| | | | | # http://support.microsoft.com/support/kb/articles/Q115/8/57.asp
* added dba extension for win32, currently the dsp isDaniel Beulshausen2000-10-261-0/+157
| | | | | | only configured with db3, adding other configurations shouldn't be hard
* use V_RENAME makro insteadDaniel Beulshausen2000-10-261-1/+1
|
* Protect us from Apache 2.0's pcre-posix stuffSascha Schumann2000-10-261-0/+3
|
* Remove second_arg_force_ref, defined in ZendSascha Schumann2000-10-261-1/+0
| | | | | Submitted by: Bill Stoddard
* The type has changed to size_t.Sascha Schumann2000-10-261-1/+1
|
* Add session_adapt_url().Sascha Schumann2000-10-262-7/+14
|
* Reinstantiate single quotes properly.Sascha Schumann2000-10-263-50/+92
| | | | | | Add url_adapt_single_url() API which modifies a single URL. Might be used to modify the Location: URL.
* Make the API more leaner (sp?) and get rid of *copy*.Sascha Schumann2000-10-261-24/+10
|
* Fix dba after resources patch.Andrei Zmievski2000-10-261-4/+9
|
* session_unset() now cleans up $HTTP_SESSION_VARS as well.Andrei Zmievski2000-10-261-0/+3
|
* Corrected some checks for errors.Nikos Mavroyanopoulos2000-10-251-4/+4
|
* Added keygen_s2k function. Function which generates keys from passwords.Nikos Mavroyanopoulos2000-10-252-1/+78
|
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-2542-89/+89
|
* Added array_sum() function.Andrei Zmievski2000-10-253-2/+39
|
* gdImageWBMP has some bug in it. Using the php-internal one works.foobar2000-10-251-4/+0
|
* __USE_GNU shall not be defined by applicationSascha Schumann2000-10-231-1/+0
|
* it's n.a. on win32 :)Daniel Beulshausen2000-10-231-0/+2
|
* Make zlib compile againStanislav Malyshev2000-10-231-4/+6
|
* Fixed a bug in session.c. If the user calls session_module_name with aAlexander Feldman2000-10-231-7/+11
| | | | | | | parameter, then the mod_data pointer is initialized to NULL and then php_session_save_current_state did not check this value before referencing the pointer. Added a check in php_session_save_current_state.
* have you ever tried to run the regression tests with error_reporting=E_ALL ?Hartmut Holzgraefe2000-10-236-0/+12
| | | | | now it will run smoothly without all theese 'undefined ...' warnings
* added a regression test skeleton fileHartmut Holzgraefe2000-10-233-3/+36
| | | | | plus a partintro in xml documentation template
* Fix bug #7397Andrei Zmievski2000-10-231-2/+2
|
* Added ini entry for choosing whether to use the read() wrapper or directlyChris Vandomelen2000-10-222-7/+17
| | | | | | | calling the read() system call. # Some people were commenting about "oddities" in the wrapper that I hadn't # noticed before, though I've used it in many places before now..
* @- OCIBindByName() now does better parameter-checking. (Thies)Thies C. Arntzen2000-10-221-21/+29
|
* Makes curl extension compile again plus some typo fixes.foobar2000-10-221-2/+5
|
* Fix php://* being handled by the ftp handlerSascha Schumann2000-10-221-1/+1
|
* Corrected prototype comments for ldap_get_option and ldap_set_optionStig Venaas2000-10-221-2/+2
|
* Fixed array_type_data_compare(). I want strings to always differ fromStig Venaas2000-10-221-3/+6
| | | | | numbers, but not say 7 and 7.0 to differ.
* Hopefully made some compile fixes for Solaris ("sun" is an already definedChris Vandomelen2000-10-221-107/+173
| | | | | | | | | | symbol on Solaris.. s_un isn't...), and corrected bugs with checking for a string by checking if Z_STRVAL_PP(ptr) == NULL instead of Z_STRLEN_PP == 0, causing segfaults when uninitialized values were passed into certain functions. @- Attempted to make compile fixes for Solaris in ext/sockets/sockets.c (Chris Vandomelen) # OK, so I have a tendency to make lots and lots of bug fixes in big spurts..
* Oops, forgot to remove those .. thought I had..Chris Vandomelen2000-10-221-11/+0
|
* Corrected some bugs dealing with compile failures (should now compileChris Vandomelen2000-10-222-14/+68
| | | | | | | | | | | | on most varieties of Linux, and should hopefully fix at least 3 of the compile errors that were discovered). Also modified read() slightly to take an optional parameter as to whether the data was binary or text so it wouldn't stop reading on a newline or null byte received. @- Made read() binary-safe in sockets.c (Chris Vandomelen) @- Attempted fixing some compile failures (Chris Vandomelen) # Hopefully someone will attempt to compile this on other systems, I # have no access to other platforms to compile it on ....
* added missing def.Daniel Beulshausen2000-10-211-0/+1
|
* - including php.h automatically includes the PHP config file.Andi Gutmans2000-10-211-7/+1
|
* Made array_unique use array_type_data_compare instead of array_data_compareStig Venaas2000-10-211-2/+2
|
* Added array_type_data_compare which is like array_data_compare butStig Venaas2000-10-211-61/+117
| | | | | | | compares type first. Also rewrote array_intersect and array_diff, so that the order is not changed. @- Made array_intersect and array_diff not alter order (Stig Venaas)
* i'm sure this should be ibase_query :)Daniel Beulshausen2000-10-211-1/+1
|
* i can find no php_config.h on win32 :)Daniel Beulshausen2000-10-211-0/+2
|
* made yaz compile under windowsDaniel Beulshausen2000-10-212-29/+118
|
* Fix annoying $withval interaction in GD configure stuffRasmus Lerdorf2000-10-211-0/+2
|