summaryrefslogtreecommitdiff
path: root/ext/standard/string.c
Commit message (Collapse)AuthorAgeFilesLines
...
* @- strrev() no longer modifies arg1. (Thies)Thies C. Arntzen1999-12-231-7/+7
|
* Made quotemeta() binary-safe.Andrei Zmievski1999-12-201-4/+7
| | | | | @ Made quotemeta() binary-safe. (Andrei)
* Use zend_sprintf by default (which is defined to sprintf, if the system'sSascha Schumann1999-12-191-1/+1
| | | | | sprintf is useable).
* Use workaround function for sprintf, if the return value of sprintf is neededSascha Schumann1999-12-191-1/+1
|
* - The tree compiles againZeev Suraski1999-12-181-47/+47
|
* More php3_ annihilationZeev Suraski1999-12-181-1/+1
|
* @- implemented count_chars(). (Thies)Thies C. Arntzen1999-12-141-6/+76
|
* Boo.Andrei Zmievski1999-12-141-1/+1
|
* Made strspn() and strcspn() binary-safe.Andrei Zmievski1999-12-131-3/+37
| | | | | | | # Please test if you can, especially cases with embedded chr(0). @ Made strspn() and strcspn() binary-safe.
* (PHP php_implode) Made binary-safe.Andrei Zmievski1999-12-111-13/+13
| | | | | @ Made implode() binary-safe (Andrei)
* Made strstr(), stristr(), and ucwords() binary-safe(). Also correctedAndrei Zmievski1999-12-111-32/+42
| | | | | | stristr() behavior to match that of strstr() if needle is not a string. @ Made strstr(), stristr(), and ucwords() binary-safe() (Andrei)
* A few more fixes for php_strtolower().Andrei Zmievski1999-12-101-1/+2
|
* (PHP strtoupper, strtolower, substr_replace) Made binary-safe.Andrei Zmievski1999-12-091-10/+12
| | | | | @Made strtoupper(), strtolower(), substr_replace() binary-safe. (Andrei)
* (explode) fixed newly introduced bug (them shall check twice *before* ↵Thies C. Arntzen1999-12-071-6/+8
| | | | committing!)
* fixed warningThies C. Arntzen1999-12-061-1/+1
|
* @- explode() is now binary-safe. (Thies)Thies C. Arntzen1999-12-061-13/+17
| | | | | we save one buffer-copy as well (hehe)
* @- strpos() is now binary-safe. (Thies)Thies C. Arntzen1999-12-061-2/+21
|
* More maintainer-mode cleanupsRasmus Lerdorf1999-12-051-0/+2
|
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-041-1/+1
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* Make array.c thread-safeSascha Schumann1999-12-011-6/+0
|
* Make basic/string functions thread-safeSascha Schumann1999-11-281-37/+32
|
* (PHP strtr) little smarterThies C. Arntzen1999-11-211-1/+1
|
* (PHP substr_replace) Changed the order of the arguments.Andrei Zmievski1999-11-201-15/+8
|
* @- Implemented 2-Arg version of strtr($str,$translation_array). This can be usedThies C. Arntzen1999-11-201-13/+125
| | | | | | @ to revert what htmlspecialchars() did. (Thies) (PHP strtr) new 2-Arg version.
* (PHP substr_replace) New function.Andrei Zmievski1999-11-161-0/+82
| | | | | @- Added substr_replace() function. (Andrei)
* @- ucfirst()/ucwords() no longer modify arg1. (Thies)Thies C. Arntzen1999-11-141-5/+9
| | | | | (PHP ucfirst,ucwords) no longer modify arg1
* @- Fixed strtr() not to modify arg1. (Thies)Thies C. Arntzen1999-11-141-6/+7
| | | | | (PHP strtr) no longer modifies arg1.
* (PHP str_repeat) New function.Andrei Zmievski1999-10-271-0/+44
|
* _php3/_php3i -> php renameAndrei Zmievski1999-10-161-45/+44
|
* Renamed a couple of functions to have proper php_ prefix.Andrei Zmievski1999-10-151-13/+13
|
* (PHP implode): Properly separate zval for another case.Andrei Zmievski1999-10-151-1/+2
|
* That should do the trick - fix implode() not to modify its argumentsZeev Suraski1999-10-151-3/+3
|
* (PHP setlocale) Locale settings are now correctly restored to the valuesJouni Ahto1999-10-081-0/+10
| | | | | | | | set in environment at request shutdown. @- setlocale doesn't anymore screw up things if you forgot to change it back to the original settings. (Jouni) # Trying to conform to the rules set up by Andrei. Let's hope this works.
* Fix nl2br crash.Andrei Zmievski1999-09-301-1/+1
|
* - Get rid of warningAndi Gutmans1999-09-281-1/+0
|
* Make an extra copy of input parameter.Sascha Schumann1999-09-271-8/+10
|
* Use new Zend APISascha Schumann1999-09-251-261/+264
|
* kill another warningStig Bakken1999-09-241-1/+3
|
* fgetss/gzgetss fixesRasmus Lerdorf1999-09-211-1/+1
|
* A couple of fixes.Andrey Hristov1999-09-211-1/+1
|
* Here was also something missing.Egon Schmid1999-09-201-1/+1
|
* - Internal functions which are basic language functions should be in ZendAndi Gutmans1999-09-201-43/+0
| | | | | | and not in PHP. I.e. strlen(), each(), error_reporting(), count(), get_class_name().
* Added optional allowable_tags arguments to strip_tags() and fgetss() toRasmus Lerdorf1999-09-201-10/+106
| | | | | | | | | allow you to specify a string of tags that are not to be stripped Could have used flex for this, and Andrew sent me a flex file to do this, but I could do the same thing with only minor additions to the existing state machine and the resulting code is much smaller and tighter.
* - Added support for unknown POST content types (Zeev)Zeev Suraski1999-09-161-4/+4
| | | | | - Introduce the convert_to_*_ex() API in strlen()
* Cleanups & optimizationsZeev Suraski1999-09-111-1/+4
|
* - Fix warnings and win32 compileAndi Gutmans1999-09-071-2/+2
|
* Kill warnings.Andrey Hristov1999-09-071-2/+2
|
* Added addcslashes(), stripcslashes().Jakub Skopal1999-09-051-72/+121
| | | | | Reverted addslashes() to the very original behaviour.
* C++ comment fix... sorry.Jakub Skopal1999-09-051-2/+2
|
* Appended second argument of addslashes(),Jakub Skopal1999-09-051-5/+106
| | | | | Changed php_addslashes() to add \000 instead of just \0