summaryrefslogtreecommitdiff
path: root/ext/standard/basic_functions.c
Commit message (Collapse)AuthorAgeFilesLines
* - Updated array functions to use high-performance APIAndrey Hristov1999-09-241-95/+94
| | | | | - Updated preg_split() to allow returning only non-empty pieces
* A couple of fixes.Andrey Hristov1999-09-211-4/+4
|
* added krsort() functionThies C. Arntzen1999-09-211-0/+28
|
* - Move some more language specific functions over to Zend.Andi Gutmans1999-09-201-146/+0
| | | | | get_class() and friends.
* - Internal functions which are basic language functions should be in ZendAndi Gutmans1999-09-201-82/+0
| | | | | | and not in PHP. I.e. strlen(), each(), error_reporting(), count(), get_class_name().
* added array_count_values function.Thies C. Arntzen1999-09-201-0/+61
|
* HASH_OF is usable enough (i hate duplicating macros all over the place)Thies C. Arntzen1999-09-151-2/+0
|
* - gettimeofday wasn't registered.Andi Gutmans1999-09-151-0/+1
|
* is_array & friens speedupsThies C. Arntzen1999-09-141-3/+3
|
* Fix a warningRasmus Lerdorf1999-09-141-0/+2
|
* count() now uses the new getParamertersEx API.Thies C. Arntzen1999-09-141-4/+5
|
* Time to do that - rename the output layer prefixZeev Suraski1999-09-121-4/+4
|
* Here you go, Egon.Andrey Hristov1999-09-071-2/+3
|
* Added second parameter to array_keys() which allows returning keysAndrey Hristov1999-09-071-20/+34
| | | | | only for a specific value in an array.
* File should here be string.Egon Schmid1999-09-061-1/+1
|
* Added addcslashes(), stripcslashes().Jakub Skopal1999-09-051-0/+2
| | | | | Reverted addslashes() to the very original behaviour.
* - Make dir functions compile in Win32Andi Gutmans1999-09-051-4/+9
| | | | | - Fix too early memory manager initialization (For you Thies)
* Catch a timeout and add user-level interface for connection handlingRasmus Lerdorf1999-09-041-0/+57
|
* fix for bug #2191Stig Bakken1999-08-311-4/+4
|
* Oops, file should be string here.Egon Schmid1999-08-291-2/+2
|
* Fix #2096Zeev Suraski1999-08-171-0/+2
|
* Removed internal pointer reset from array_walk.Andrey Hristov1999-08-161-1/+0
|
* Forgot to have internal pointer reset.Andrey Hristov1999-08-141-0/+1
|
* Rename TestClass to OverloadedTestClassZeev Suraski1999-08-141-1/+1
|
* Modified array_walk() function so that the userland callback is passedAndrey Hristov1999-08-071-9/+48
| | | | | | a key and possible user data in addition to the value. It's still backward compatible with one argument version.
* Fix&improve conversion scriptsZeev Suraski1999-08-071-1/+2
|
* count/sizeof had their arguments setup wrong (messup between Beta 1 and 2)Zeev Suraski1999-08-061-2/+2
|
* - Improved register_shutdown_function() - you may now supply arguments thatZeev Suraski1999-08-061-45/+63
| | | | | | | | will be passed to the shutdown function - Improved call_user_func() and call_user_method() - they now support passing arguments by reference - Fixed usort() and uksort()
* fix for #1947Thies C. Arntzen1999-08-061-0/+11
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-80/+80
| | | | | php3_compat.h)
* Support resource type in gettype()Andi Gutmans1999-08-011-0/+8
|
* -Tiny fixAndi Gutmans1999-07-291-1/+1
|
* - Added function documentation prototypes. Thanks to Egon Schmid forAndi Gutmans1999-07-291-2/+18
| | | | | straightening me out :)
* - Added get_class($obj), get_parent_class($obj) and method_exists($obj,"name")Andi Gutmans1999-07-281-5/+66
|
* Fix link functions problem.Andrey Hristov1999-07-281-0/+6
|
* - strttotime is compiled in on win32 again.Andi Gutmans1999-07-271-2/+0
|
* check for nKeyLength not arKeyAndrey Hristov1999-07-271-3/+3
|
* Fix for bug #1887.Andrey Hristov1999-07-271-2/+2
|
* Fix for bug #1891Andrey Hristov1999-07-271-1/+1
|
* More symbol work.Andrey Hristov1999-07-261-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | I've defined a few macros to help with module/request init/startup function definitions. Basically: PHP_MINIT_FUNCTION(module) PHP_MSHUTDOWN_FUNCTION(module) PHP_RINIT_FUNCTION(module) PHP_RSHUTDOWN_FUNCTION(module) PHP_MINFO_FUNCTION(module) These will expand to proper function prototypes. Now to specify these in the module entry, use: PHP_MINIT(module) PHP_MSHUTDOWN(module) PHP_RINIT(module) PHP_RSHUTDOWN(module) PHP_MINFO(module) I've updated all modules in ext/standard and everything from ext/apache to ext/db. If you can, please update your module to use these macros.
* - Fix the new operator incompatibility.Andi Gutmans1999-07-261-0/+2
| | | | | | | - I commented PHP_FUNCTION(strtotime) in datetime.c because it stopped win32 from compiling. This needs to be fixed!!! - Check out libzend to compile the tree now.
* A bunch of grunt work updating function entries and declarations.Andrey Hristov1999-07-241-217/+226
|
* Added function entry for similar_text().Andrey Hristov1999-07-231-0/+1
|
* Added function entry for strip_tags.Andrey Hristov1999-07-231-0/+1
|
* Ported strtotime() function.Andrey Hristov1999-07-231-0/+1
|
* -Ported all remaining date() optionsAndrey Hristov1999-07-221-1/+1
| | | | | | | -Made array_walk() work somewhat, but it's not possible to change array values from inside the walk function yet
* Added headers_sent() functionAndrey Hristov1999-07-201-0/+1
|
* Proto changeAndrey Hristov1999-07-171-1/+1
|
* I was sure I committed these already. WeirdZeev Suraski1999-07-171-2/+3
|
* A little change in how array_splice/array_slice handle length parameter.Andrey Hristov1999-07-161-5/+9
| | | | | Makes it compatible with Perl.