summaryrefslogtreecommitdiff
path: root/ext/standard/basic_functions.h
Commit message (Collapse)AuthorAgeFilesLines
* added krsort() functionThies C. Arntzen1999-09-211-0/+1
|
* - Move some more language specific functions over to Zend.Andi Gutmans1999-09-201-9/+0
| | | | | get_class() and friends.
* - Internal functions which are basic language functions should be in ZendAndi Gutmans1999-09-201-2/+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/+1
|
* Catch a timeout and add user-level interface for connection handlingRasmus Lerdorf1999-09-041-0/+5
|
* - Added get_class($obj), get_parent_class($obj) and method_exists($obj,"name")Andi Gutmans1999-07-281-0/+4
|
* More symbol work.Andrey Hristov1999-07-261-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* A bunch of grunt work updating function entries and declarations.Andrey Hristov1999-07-241-14/+14
|
* *** empty log message ***Andrey Hristov1999-06-091-8/+8
|
* Don't set is_ref in _phpi_splice()Andrey Hristov1999-06-071-0/+2
| | | | | | More checking in array_merge() Added keys() and values() array functions.
* Added array_merge() function.Andrey Hristov1999-06-051-0/+1
|
* Added push(), pop(), shift(), unshift(), splice(), and slice() array functions.Andrey Hristov1999-06-051-0/+6
| | | | | | | | The first 5 work like their Perl counterparts. slice() returns a chunk of the array specified by offset and length arguments. Backport to PHP3 and docs will be coming soon.
* conv_proto *.[ch]Sascha Schumann1999-05-161-47/+47
|
* Added compact() function.Andrey Hristov1999-05-111-0/+1
|
* Added in_array() function.Andrey Hristov1999-05-101-0/+1
|
* -Added extract() functionAndrey Hristov1999-05-081-0/+3
| | | | | -Added function_exists() function
* * Plenty of thread safety and Win32 work.Zeev Suraski1999-04-261-1/+1
| | | | | | | | | | | * Changed PHP4 to compile as a DLL, both ISAPI and the the CGI run with the same DLL. * Switched to using the DLL runtime library under Win32. PHP will NOT work if compiled against the static library! * Removed yesterday's php4libts project (with php4dllts, it's obsolete). This *does* affect thread-unsafe Windows as well - the thread unsafe CGI is also dependant on the thread-unsafe DLL.
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+130
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.