summaryrefslogtreecommitdiff
path: root/ext/standard/php3_string.h
Commit message (Collapse)AuthorAgeFilesLines
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-041-106/+0
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* Make basic/string functions thread-safeSascha Schumann1999-11-281-4/+1
|
* (PHP substr_replace) New function.Andrei Zmievski1999-11-161-0/+1
| | | | | @- Added substr_replace() function. (Andrei)
* (PHP str_repeat) New function.Andrei Zmievski1999-10-271-0/+1
|
* _php3/_php3i -> php renameAndrei Zmievski1999-10-161-9/+9
|
* Renamed a couple of functions to have proper php_ prefix.Andrei Zmievski1999-10-151-2/+2
|
* (PHP setlocale) Locale settings are now correctly restored to the valuesJouni Ahto1999-10-081-0/+1
| | | | | | | | 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.
* - Internal functions which are basic language functions should be in ZendAndi Gutmans1999-09-201-3/+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-1/+1
| | | | | | | | | 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 addcslashes(), stripcslashes().Jakub Skopal1999-09-051-1/+4
| | | | | Reverted addslashes() to the very original behaviour.
* Appended second argument of addslashes(),Jakub Skopal1999-09-051-0/+1
| | | | | Changed php_addslashes() to add \000 instead of just \0
* *** empty log message ***Zeev Suraski1999-09-041-2/+2
|
* A bunch of grunt work updating function entries and declarations.Andrey Hristov1999-07-241-2/+2
|
* Added function entry for strip_tags.Andrey Hristov1999-07-231-0/+1
|
* Making function accessible.Andrey Hristov1999-06-221-0/+2
|
* * fixed some #if/#ifdef issuesStig Bakken1999-06-161-4/+14
| | | | | | | | | | | | * hand-patched in php3 changes from 3.0.6 to HEAD in these files: fopen-wrappers.[ch] ext/standard/file.[ch] ext/standard/fsock.[ch] ext/standard/php3_string.h ext/standard/string.c * added some new file/socket macros for more readable code: FP_FGETS(buf,len,sock,fp,issock) FP_FREAD(buf,len,sock,fp,issock) FP_FEOF(sock,fp,issock) FP_FGETC(sock,fp,issock)
* * reverse fsock/string import patchesStig Bakken1999-06-151-20/+4
|
* * now using php4.ini instead of php3.iniStig Bakken1999-06-151-4/+20
| | | | | | * re-imported fopen-wrappers, fsock and string code from php3 NB! I have not tested all of the imported functions yet.
* conv_proto *.[ch]Sascha Schumann1999-05-161-40/+40
|
* add fast bin2hex string functionSascha Schumann1999-05-161-0/+1
|
* crypt constantsSascha Schumann1999-04-211-8/+0
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+99
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.