summaryrefslogtreecommitdiff
path: root/ext/standard/string.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Begin cleanup, api wise...Sterling Hughes2001-09-041-410/+421
|
* stray tabsSterling Hughes2001-09-031-3/+3
|
* cleanup sscanf() just a tiny bit, just so it looks like the rest of the codeSterling Hughes2001-09-031-21/+15
| | | | | in the string.c file.
* Fixed buffer overflow issue.Gavin Sherry2001-08-221-5/+12
|
* Changed php_strip_tags() to check if <? was XML code.Gavin Sherry2001-08-221-3/+11
|
* API updateZeev Suraski2001-08-211-1/+2
|
* WhitespaceZeev Suraski2001-08-111-57/+57
|
* Fix some build probs on *bsdWez Furlong2001-08-101-0/+30
|
* more tsrm cleanupSascha Schumann2001-08-061-23/+20
|
* Removed some duplicate code out of addclashesJeroen van Wolffelaar2001-08-051-8/+3
| | | | | | | # Not TSRM-safe, I am afraid... @- addcslashes now warns when charlist is invalid. The returned string @ remained the same (Jeroen)
* Fix ZTS build.Sebastian Bergmann2001-08-051-3/+5
|
* Error-handling for the second parameter of [l|r]trimJeroen van Wolffelaar2001-08-051-5/+31
|
* fix possible crash - we should never keep the zval** as they might pointThies C. Arntzen2001-08-041-2/+2
| | | | | somewhere into the Engine. (there's still a new bug in strtok - hunting;-)
* #- Fix silly bug that caused segfaultJeroen van Wolffelaar2001-08-031-3/+3
|
* Un-revert patchJeroen van Wolffelaar2001-08-031-69/+131
|
* Reverting last patch, segfaults.Jeroen van Wolffelaar2001-08-031-131/+69
|
* - Added new parameter to [l|r]trim, to specify _what_ to trimJeroen van Wolffelaar2001-08-031-29/+65
| | | | | | @- Added optional second parameter to trim, chop and ltrim. You can @ now specify which characters to trim (jeroen)
* Don't copy the strtok parameterSascha Schumann2001-08-031-2/+6
|
* Replace our strtok implementation with a binary-safe one which codeSascha Schumann2001-08-031-40/+62
| | | | | does not cause headaches when reading it. Also happens to be a bit quicker.
* Zend compatibility patchZeev Suraski2001-07-301-8/+7
|
* More TSRMLS_FETCH work, and a bit of cleanupZeev Suraski2001-07-301-2/+0
|
* Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵Zeev Suraski2001-07-301-1/+0
| | | | the way
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-10/+5
|
* - Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-2/+2
| | | | | | | - 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...
* Add optional support for using boyer-moore to str_replace.Sascha Schumann2001-07-201-10/+104
|
* __USE_GNU should not be defined by an application.Sascha Schumann2001-07-091-1/+0
|
* More ifdefs, just in case.Wez Furlong2001-07-051-0/+10
|
* Added loads of #ifdefs; should fix Bug #11889.Wez Furlong2001-07-051-0/+33
|
* Fix build on linuxJason Greene2001-07-051-0/+1
| | | | | Heads up Wez
* (PHP nl_langinfo) Added function when provided by OSWez Furlong2001-07-041-0/+119
| | | | | | | | | (PHP htmlentities, htmlspecialchars) Uses nl_langinfo to determine charset @- Added nl_langinfo() (when OS provides it) that returns locale information. (Wez Furlong) # There are a lot of constants used by nl_langinfo; should we do something # along the lines of what we do for syslog?
* @added optional suffix removal parameter to basename() (Hartmut)Hartmut Holzgraefe2001-06-231-8/+31
| | | | | | added optional suffix removal parameter to basename() this makes it more simmilar to the basename command
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+8
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-28/+99
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* Fix proto decription.Sean Bright2001-04-291-2/+1
|
* Really fix bug #10362.Sean Bright2001-04-291-2/+2
| | | | | | # My previous fix caused a segfault when there were parens in an unallowed # tag :( Thanks Andi.
* Fix for bug #10362Sean Bright2001-04-281-0/+4
|
* @- Fixed crash in pathinfo()Thies C. Arntzen2001-04-131-1/+1
|
* - Fix whitespaceAndi Gutmans2001-02-261-6/+6
|
* Fix for bug #9449 to stop infinate loop in wordwrap.James Moore2001-02-261-0/+1
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Safer bin2hexStanislav Malyshev2001-02-221-1/+2
|
* fixed buffer-overwriteThies C. Arntzen2001-02-181-1/+1
|
* 0..255Thies C. Arntzen2001-02-151-1/+1
|
* Fix strip_tags to not strip a lone > characterRasmus Lerdorf2001-02-021-0/+2
| | | | | @ Fix strip_tags to not strip a lone > character (Rasmus)
* @- Improved str_replace() to accept an array for any parameter - similarAndrei Zmievski2001-01-221-30/+142
| | | | | @ to preg_replace(). (Andrei)
* - Fix for bug #8367 (wordwrap not cutting correctly)Derick Rethans2001-01-181-4/+3
|
* Added string comparison function strcoll(). It uses the current locale toSean Bright2001-01-171-0/+18
| | | | | | do the comparisons. @- Added localeconv() and strcoll() functions for localization. (Sean)
* Added localeconv() function. Operates similarly to localeconv() defined inSean Bright2001-01-141-0/+150
| | | | | locale.h. Should work well under non-ZTS as well as ZTS.
* added iconv extension.Rui Hirokawa2001-01-091-127/+0
|
* WS fixSascha Schumann2001-01-081-7/+7
|