summaryrefslogtreecommitdiff
path: root/ext/standard/string.c
Commit message (Expand)AuthorAgeFilesLines
* MFH: fix segfault in strripos() when offset == INT_MAX+1Antony Dovgal2007-05-101-2/+2
* MFH: fix #40915 (addcslashes unexpected behavior with binary input)Antony Dovgal2007-03-261-5/+2
* return false instead of empty string when -length is greater than (len - offset)Antony Dovgal2007-03-121-0/+4
* Re-added check removed by the previous patchIlia Alshanetsky2007-03-101-0/+2
* fix substr()Antony Dovgal2007-03-091-1/+1
* Fixed bug #40754 (added substr() & substr_replace() overflow checks).Ilia Alshanetsky2007-03-091-0/+12
* clarify checks and error messagesStanislav Malyshev2007-03-081-2/+7
* Improved length parameter validationIlia Alshanetsky2007-03-081-1/+1
* Improved offset validationIlia Alshanetsky2007-03-081-2/+4
* fix MOPB#14Stanislav Malyshev2007-03-071-1/+1
* Fixed bug #40704 (strip_tags() does not handle single quotes correctly)Ilia Alshanetsky2007-03-031-5/+5
* snprintf() -> slprintf()Ilia Alshanetsky2007-02-271-1/+1
* Fixed bug #40637 (Regression in strip_tags() in relation so quote handling)Ilia Alshanetsky2007-02-271-2/+6
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-2/+2
* Make sure p is not pointing to the start of the bufferIlia Alshanetsky2007-02-131-1/+1
* Fixed bug #40432 (strip_tags() fails with greater than in attribute).Ilia Alshanetsky2007-02-131-3/+10
* MFHAntony Dovgal2007-02-101-1/+1
* fix leaks on errorAntony Dovgal2007-02-011-0/+4
* Use safe_emalloc() rather then emalloc()Ilia Alshanetsky2007-01-081-1/+1
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
* MFHAntony Dovgal2006-12-201-4/+7
* MFHAntony Dovgal2006-12-201-3/+3
* Less hackish support for spaces at the start of tags within strip_tags()Ilia Alshanetsky2006-12-181-3/+8
* Filter fixes:Ilia Alshanetsky2006-12-181-1/+1
* Removed deadcode found by Ron KorvingIlia Alshanetsky2006-12-131-4/+0
* Improve tolower()-related functions on Windows and VC2005 by caching locale a...Stanislav Malyshev2006-12-041-0/+1
* MFH: fix #39621 (str_replace() is not binary safe on strings with equal length)Antony Dovgal2006-11-241-7/+24
* Fixed bug #39350 (crash with implode("\n", array(false))).Ilia Alshanetsky2006-11-061-1/+6
* Catch empty strings right away.Ilia Alshanetsky2006-10-111-8/+14
* MFH: avoid reading str[-1], add warning when invalid format specifiedAntony Dovgal2006-10-111-5/+14
* Increment replace count value for case-sensitive single char searches.Andrei Zmievski2006-10-051-0/+3
* MFH: fix #39032 (strcspn() stops on null character)Antony Dovgal2006-10-041-1/+1
* optimize zend_hash_init() with known hash table sizes.Ilia Alshanetsky2006-10-031-1/+1
* Use php_error_docref() instead.Andrei Zmievski2006-10-021-6/+6
* More offset fixes. Added E_NOTICE where appropriate.Andrei Zmievski2006-10-021-4/+17
* Fix invalid memory access in strrpos().Andrei Zmievski2006-10-021-3/+8
* more z/Z fixesAntony Dovgal2006-08-311-14/+14
* Corrected problems introduced by previous commit.Ilia Alshanetsky2006-08-291-4/+4
* Finalize implode() patchIlia Alshanetsky2006-08-291-5/+4
* fix win32 buildAntony Dovgal2006-08-291-1/+3
* Adjust code to avoid TSRMLS_FETCHIlia Alshanetsky2006-08-281-3/+2
* fix ZTS buildAntony Dovgal2006-08-281-0/+1
* Optimize the operation of implode() on non-string parametersIlia Alshanetsky2006-08-271-20/+37
* fix implode() function (see http://news.php.net/php.qa/26876)Antony Dovgal2006-08-221-4/+20
* Fixed overflow on 64bit systems in str_repeat() and wordwrap().Ilia Alshanetsky2006-08-101-7/+4
* use memrchr/zend_memrchr instead of strrchrAntony Dovgal2006-08-081-4/+4
* MFH: patch for #37846 (wordwrap() wraps incorrectly)Antony Dovgal2006-07-281-1/+1
* - fix bug #37945 pathinfo() cannot handle argument with special charactersMichael Wallner2006-07-171-0/+5
* MFHAntony Dovgal2006-07-171-14/+10
* - MFH Pathinfo allows to get filename (Toby S, Christian S)Marcus Boerger2006-07-161-1/+23