summaryrefslogtreecommitdiff
path: root/ext/standard/string.c
Commit message (Collapse)AuthorAgeFilesLines
...
* *** empty log message ***Zeev Suraski1999-09-041-4/+4
|
* signed/unsigned warning removedPhilippe Verdy1999-08-121-1/+1
|
* More typos.Egon Schmid1999-08-091-2/+6
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-15/+15
| | | | | php3_compat.h)
* This should fix the implode() problemZeev Suraski1999-07-301-0/+1
|
* A bunch of grunt work updating function entries and declarations.Andrey Hristov1999-07-241-2/+2
|
* use the same version as in php3Sascha Schumann1999-07-211-54/+0
|
* * Get the mSQL module up to dateZeev Suraski1999-07-161-1/+1
|
* License updateZeev Suraski1999-07-161-21/+10
|
* Making the function accessible.Andrey Hristov1999-06-221-2/+2
|
* fixed implode "again" -Thies C. Arntzen1999-06-211-6/+6
|
* * fixed some #if/#ifdef issuesStig Bakken1999-06-161-143/+415
| | | | | | | | | | | | * 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-463/+153
|
* * now using php4.ini instead of php3.iniStig Bakken1999-06-151-153/+463
| | | | | | * re-imported fopen-wrappers, fsock and string code from php3 NB! I have not tested all of the imported functions yet.
* oci8 to 3.0.9Thies C. Arntzen1999-06-091-6/+8
| | | | | implode works!
* char * => unsigned char *Sascha Schumann1999-05-161-2/+2
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-37/+37
|
* add fast bin2hex string functionSascha Schumann1999-05-161-0/+44
|
* - regex cache (needs some work)Sascha Schumann1999-05-121-74/+37
| | | | | - str_replace changes from php3
* substr() fixRasmus Lerdorf1999-05-121-2/+3
|
* substr() fix for PHP4 as wellRasmus Lerdorf1999-05-121-1/+1
|
* * Move unclean_shutdown from PHP to Zend.Zeev Suraski1999-05-111-1/+3
| | | | | | * The Master/Local headers in the phpinfo() table were reversed. * Fix a gpc bug
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-42/+20
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+1
|
* last bunch of extensions moving to ext/Stig Bakken1999-04-221-1/+1
| | | | | | | | fhttpd module taken out of functions, functions is ready to go. The only extensions I have tested are gd+freetype and odbc(solid). Please try compiling in your favourite extensions and let me know how it works.
* * Rename php_compat.[ch] to flock_compat.[ch] and move it to ext/standardZeev Suraski1999-04-211-1/+1
| | | | | * Fix Win32 compilation
* port some fixes, add compat routinesSascha Schumann1999-04-211-1/+1
|
* str_replace fixSascha Schumann1999-04-211-0/+49
|
* Make Win32 happy with the recent changes.Zeev Suraski1999-04-181-1/+1
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+1590
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.