summaryrefslogtreecommitdiff
path: root/ext/standard
Commit message (Collapse)AuthorAgeFilesLines
* Touch fileSascha Schumann2002-08-061-1/+1
|
* Correct carset if iconv is activeMarcus Boerger2002-08-051-2/+16
| | | | | #Same solution would work for mbstring - but that must wait
* -New function ob_list_handlersMarcus Boerger2002-08-051-0/+1
| | | | | | @- Added ob_list_handlers() which returns an array of all active output @ handlers. (marcus)
* need to export var_replace and var_destroy for win32Shane Caraveo2002-08-043-6/+6
|
* -Send charset US-ASCII or ini setting default_charset.Marcus Boerger2002-08-041-2/+8
| | | | | | #After some discussion with Ilia Alshanetsky #But perhaps we should have a look for a mbstring solution...
* ups.. :)Georg Richter2002-08-041-1/+1
|
* added meta tag (w3c compliance)Georg Richter2002-08-041-1/+1
| | | | | Thx to Ilia Alshanetsky (ilia@prohost.org)
* Close pipes to avoid deadlock.James E. Flemer2002-08-031-0/+6
| | | | | Submitted By: Melvyn Sopacua <msopacua@idg.nl>
* one last fix for array_shiftBrad LaFountain2002-08-031-0/+1
|
* Fix typo in #if. Bug #17538.James E. Flemer2002-08-021-1/+1
|
* added money_format() functionHartmut Holzgraefe2002-08-024-1/+31
| | | | | | | this is similar to C-libs strfmon(), using the same format string semantics but a different function prototype, so i decided to give it a more speaking name similar to number_format()
* made sapi_register_treat_data() to support multibyte input encoding ↵Rui Hirokawa2002-08-021-2/+2
| | | | translation without MBSTR_ENC_TRANS and changed php_treat_data to php_default_treat_data.
* array_pop wasnt setting next indexBrad LaFountain2002-08-011-13/+10
|
* That was not correct..foobar2002-08-011-3/+0
|
* Reset index when doing array_pop()foobar2002-08-011-1/+4
|
* Add test for the index resetting.foobar2002-08-011-1/+4
|
* UghRasmus Lerdorf2002-08-011-1/+1
|
* Added tests for array_shift/array_pop.foobar2002-08-012-0/+96
|
* Nuke compile warning.foobar2002-08-011-1/+2
|
* - Removed the DOS line endingsfoobar2002-08-011-1/+1
| | | | | | - Changed the '//' comment (this is C, not C++) to /* */ # Brad, use some editor which works..
* made array_shift re-index like it did before previous fixBrad LaFountain2002-08-011-6/+21
|
* Reverted the patch..it breaks the original behaviour of at least array_shift.foobar2002-07-311-4/+5
|
* fixed bugs 16063 and 16068Brad LaFountain2002-07-301-5/+4
| | | | | increased preformance of array_pop and array_shift
* Commiting Steph@php.net's patch to re-enable touch on Win32 machinesDan Kalowsky2002-07-301-2/+0
|
* Fix strtotime() "next" keyword handling.Rasmus Lerdorf2002-07-301-1/+1
|
* Fix for #18638 (str_rot13 bug)Rasmus Lerdorf2002-07-301-14/+11
|
* Fixed bug #14657 (patch by Steph Fox)Edin Kadribasic2002-07-291-1/+0
|
* - Copy and paste error -> unify error messagesDerick Rethans2002-07-282-2/+2
|
* Added sha1, sha1_file functions.Stefan Esser2002-07-285-1/+462
|
* Bugfix: #18532Georg Richter2002-07-261-11/+23
| | | | | Fixed week number calculation in accordance with ISO 8601
* all functions based on php_stat are now safe mode aware...Stefan Esser2002-07-261-0/+4
|
* - Added parameter to print_r which returns the variable representationDerick Rethans2002-07-251-7/+17
| | | | | | | instead of echoing it. @- Added parameter to print_r which returns the variable representation @ instead of echoing it. (Derick)
* is_object() returns FALSE if object is a "incomplete object".Yasuo Ohgaki2002-07-243-9/+16
| | | | | | Raise E_NOTICE, instead of E_ERROR, for setting/getting properties to/from a "incomplete object".
* restore shane to list of members of php group (got lost somewhere along the way)jim winstead2002-07-231-1/+1
|
* Switch streams socket abstraction to use a timeval structure instead of anJason Greene2002-07-223-3/+3
| | | | | | | | integer to allow subsecond timeouts. This supports the previous behavior of fsockopen() Fixes bug #16261
* @Fixed infinite recursion crash bug in ticks (Jason)Jason Greene2002-07-161-20/+29
| | | | | | | | | | | | | | | | | | | | | | | Prevent reenterant calls to a user tick function by flagging the function entry during call. This prevents code like the following from infinitely recursing until a crash occurs: <?php register_tick_function(a); declare(ticks=1) { function a() { print "blah\n"; } ; ; ; ; } ?>
* Fixed win32 buildSander Roobol2002-07-131-6/+5
|
* nuke unused variable warningfoobar2002-07-131-3/+7
|
* Fixed bug: #16638.foobar2002-07-131-2/+1
|
* - Made the trim functions use same base function. (less code :)foobar2002-07-132-65/+35
| | | | | | | - Renamed php_trim2 -> php_trim (not used anyplace else, yet) - Made php_trim abit more usable for external use. (not necessary to use zvals with it anymore)
* - Fixed compile (bug #18297) on such systems which define uchar.foobar2002-07-121-8/+6
|
* Fixed bug: #16637, username/password needs to be urlencoded.foobar2002-07-111-0/+4
|
* @Fixed socket_set_timeout on win32 (Jason, Edin, Jani)Jason Greene2002-07-102-4/+3
|
* - Add TSRMLS_DC to prototype.Andi Gutmans2002-07-081-1/+1
|
* - Fix TSRMLS_* stuffAndi Gutmans2002-07-083-5/+5
|
* Unify error messagesDerick Rethans2002-07-0819-117/+116
|
* Unify error messagesDerick Rethans2002-07-081-2/+2
|
* - Add warning to is_*() functions if more than one argument was passedDerick Rethans2002-07-081-0/+1
|
* Silence warningDerick Rethans2002-07-081-1/+1
|
* Unify error messagesDerick Rethans2002-07-081-60/+60
|