summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
...
* added krsort() functionThies C. Arntzen1999-09-212-0/+29
|
* Continue, if re2c is not available.Sascha Schumann1999-09-211-1/+1
| | | | | Using the ".new" suffix, we prevent the shell from zeroing the file.
* Fix typo.Sascha Schumann1999-09-211-1/+1
| | | | | catched by: ssb
* On at least Win32, gettimeofday() returns values in tv_usec which exceedSascha Schumann1999-09-211-0/+1
| | | | | | | | 1,000,000. For portability reasons we set the integer part of our result to 0. This is equivalent to using tv_usec % 1000000.
* woopsRasmus Lerdorf1999-09-211-1/+1
|
* Fix zlib compile problemRasmus Lerdorf1999-09-211-4/+18
|
* - Move some more language specific functions over to Zend.Andi Gutmans1999-09-202-155/+0
| | | | | get_class() and friends.
* Timestamp commit. I do consider removing the rule from Makefile.amSascha Schumann1999-09-201-2/+2
|
* Here was also something missing.Egon Schmid1999-09-202-2/+2
|
* - Internal functions which are basic language functions should be in ZendAndi Gutmans1999-09-204-130/+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-203-16/+126
| | | | | | | | | 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.
* php3 compatibility addedAndrew Skalski1999-09-202-6/+23
|
* - Upgraded var_dump() to take multiple argumentsAndrey Hristov1999-09-204-31/+42
| | | | | - php3api_ is changed to php_
* Replaced ftplib because of incompatible license.Andrew Skalski1999-09-207-1945/+1350
|
* logic fixStig Bakken1999-09-201-1/+1
|
* resource API & ZTS stuffThies C. Arntzen1999-09-202-246/+141
|
* added array_count_values function.Thies C. Arntzen1999-09-202-0/+62
|
* new API for var_dumpThies C. Arntzen1999-09-201-3/+3
|
* - Fix bug #2278Andi Gutmans1999-09-181-1/+1
|
* Fixed prototype.Stefan Roehrich1999-09-181-1/+1
|
* Aline escape signs in macro definitions.Sascha Schumann1999-09-182-47/+49
|
* SUN c89 doesn't like } direct after a label;-(Thies C. Arntzen1999-09-172-1/+5
|
* Convert to Ex API. Does anyone have a better name for it?Sascha Schumann1999-09-176-44/+47
|
* Use Ex API here as well.Sascha Schumann1999-09-172-81/+84
|
* Convert module to use Ex API.Sascha Schumann1999-09-171-32/+34
|
* fix #2316 - fetching empty LOBs via OCI8Thies C. Arntzen1999-09-171-7/+11
|
* don't call empty function namesSascha Schumann1999-09-171-3/+1
|
* add user-level callbacksSascha Schumann1999-09-176-18/+279
|
* supply path to xml include dir for APXS and APACISascha Schumann1999-09-171-5/+3
|
* This format is also used by the XML moduleSascha Schumann1999-09-171-1/+1
| | | | | allows us to compile with Apache's expat-lite dir
* If available, use Apache's embedded expatSascha Schumann1999-09-171-0/+5
|
* - Added support for unknown POST content types (Zeev)Zeev Suraski1999-09-161-4/+4
| | | | | - Introduce the convert_to_*_ex() API in strlen()
* Generalize SAPI a bitZeev Suraski1999-09-161-1/+1
|
* Fixed memory leak.Andrey Hristov1999-09-161-0/+1
|
* Added documentation hooks to ftp.cAndrew Skalski1999-09-161-0/+39
|
* added ftp_pwd() ftp_cdup() ftp_mkdir() and ftp_rmdir()Andrew Skalski1999-09-162-0/+136
|
* added ftp_systype() and ftp_listraw() functionsAndrew Skalski1999-09-162-0/+113
|
* Added rudimentary FTP support.Andrew Skalski1999-09-167-0/+1859
|
* improve short help messagesSascha Schumann1999-09-166-12/+18
|
* Make some things accessible from outside for session moduleSascha Schumann1999-09-162-32/+82
|
* wddx decode works as wellSascha Schumann1999-09-162-4/+6
|
* wddx serialization works nowSascha Schumann1999-09-162-5/+25
|
* Since Thies fixed var.c, objects work now, too.Sascha Schumann1999-09-161-1/+0
|
* php4 now deserialized php3 objects correctly!Thies C. Arntzen1999-09-161-30/+36
| | | | | | php3 will ignore objects serialized by php4 (that's the price we have to pay!) small fix in deserializing objects with static initializers (thanx boris)
* when unserializing classes:Thies C. Arntzen1999-09-151-1/+2
| | | | | | if the class is not known the standard class (no methods) will be used. if the class is known - the created object will functional again!
* Fixed printf format.Andrey Hristov1999-09-151-1/+1
|
* HASH_OF is now in php.h.Andrey Hristov1999-09-151-2/+0
|
* use new API in var.cThies C. Arntzen1999-09-151-9/+9
|
* i love id-stringsThies C. Arntzen1999-09-151-0/+2
|
* made serialize/unserialize work with classes! (also made the code "shorter")Thies C. Arntzen1999-09-151-96/+66
| | | | | | | | CHANGES: - the serialized string now also contains the class name (was not available in PHP3)! - when unserializing php will create a fully working object of that class again therby the class has to be defined when unserializing - else you get a warning!