summaryrefslogtreecommitdiff
path: root/ext/standard/basic_functions.h
Commit message (Collapse)AuthorAgeFilesLines
* - Remove read_uploaded_fileDerick Rethans2002-03-231-1/+0
|
* - Added read_uploaded_file (patch by Andrew Sitnikov <sitnikov@infonet.ee>)Derick Rethans2002-03-231-0/+1
|
* Adding object aggregation capability along with tests.Andrei Zmievski2002-02-211-0/+2
|
* Move type-handling functions into ext/standard/type.c (which hadjim winstead2002-01-091-17/+0
| | | | | a few otherwise unused functions in it).
* - Removed is_array_multidimensionalDerick Rethans2001-12-291-1/+0
|
* - Added extra parameter to count() that recursively counts elements in anDerick Rethans2001-12-291-0/+1
| | | | | | array and added is_array_multidimensional(). (patch by Vlad Bosinceanu <glipy@fx.ro>)
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* renamed rot13 to str_rot13()Hartmut Holzgraefe2001-12-061-1/+1
|
* ported rot13() from php3Hartmut Holzgraefe2001-12-061-0/+2
|
* @ Have rand() and mt_rand() seed automatically if srand() or mt_srand() hasSterling Hughes2001-10-071-1/+4
| | | | | @ not been called. (Sterling)
* renamed doubleval to floatval and made doubleval an alias to floatvalHartmut Holzgraefe2001-09-211-2/+2
| | | | | made is_float the function entry and is_double the alias
* Make rand thread safe when ZTS is defined.Sterling Hughes2001-09-161-0/+2
|
* revert bad commit.foobar2001-09-051-7/+0
|
* Merge RAND_REDESIGN into MAINJeroen van Wolffelaar2001-09-031-0/+7
|
* @- Added ini_get_all() function which returns all registered ini entriesfoobar2001-08-301-0/+1
| | | | | or the entries for the specified extension. (Jani)
* Make the session module more independentZeev Suraski2001-08-261-1/+0
|
* Get rid of TRANS_SID - it's always possible to use it now.Zeev Suraski2001-08-251-6/+2
|
* Implement import_request_variables()Zeev Suraski2001-08-081-0/+1
|
* fix possible crash - we should never keep the zval** as they might pointThies C. Arntzen2001-08-041-1/+1
| | | | | somewhere into the Engine. (there's still a new bug in strtok - hunting;-)
* Don't copy the strtok parameterSascha Schumann2001-08-031-0/+1
|
* Replace our strtok implementation with a binary-safe one which codeSascha Schumann2001-08-031-2/+3
| | | | | does not cause headaches when reading it. Also happens to be a bit quicker.
* More TSRMLS_FETCH annihilation. Enough for today...Zeev Suraski2001-07-311-1/+1
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-11/+1
|
* Provide typedefs for php_int32Sascha Schumann2001-07-181-0/+2
|
* Add getmygid() and safe_mode_gid ini directive to allow safe mode to doRasmus Lerdorf2001-07-091-0/+1
| | | | | | | a gid check instead of a uid check. @ - Add getmygid() and safe_mode_gid ini directive to allow safe mode to do @ a gid check instead of a uid check. (James E. Flemer, Rasmus)
* - Start nuking not needed GINITAndi Gutmans2001-05-221-1/+0
|
* Moving some functions into Zend.Andrei Zmievski2001-05-211-5/+0
|
* Added get_defined_constants() function. Returns an associative array ofSean Bright2001-05-211-0/+1
| | | | | | | | constants mapped to their values. @- Added get_defined_constants() function to return an associative array of @ constants mapped to their values. (Sean) # If anyone sees a problem let me know.
* munmap() file in RSHUTDOWN, if PHPWRITE fails.Sascha Schumann2001-05-181-0/+5
|
* @- Added is_callable() function that can be used to find out whetherAndrei Zmievski2001-05-091-0/+1
| | | | | @ its argument is a valid callable construct. (Andrei)
* this function will never return true...Zeev Suraski2001-03-041-1/+0
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* added iconv extension.Rui Hirokawa2001-01-091-8/+0
|
* added a output handler function ob_iconv_handler which tranforms output ↵Rui Hirokawa2001-01-081-0/+8
| | | | encoding using iconv().
* Added is_scalar() function.Zak Greant2000-12-181-4/+5
|
* @ Added the call_user_method_array function which allows you to call a ↵Sterling Hughes2000-12-081-0/+1
| | | | | | | method with an @ arbitrary number of parameters. (Sterling)
* @ Added the is_null() function that will return true if a variable is ofSterling Hughes2000-11-291-0/+1
| | | | | @ type null. (Sterling)
* @ Added the call_user_func_array() function which gives you the ability toSterling Hughes2000-11-241-0/+2
| | | | | | | | | @ call a user function by passing an array of parameters as the second @ argument. @ Added the constant() function which returns the value of a constant given @ the constant's name.
* parse_ini_file() supports a new optional 2nd argument that instructs itZeev Suraski2000-10-291-0/+2
| | | | | | to divide the directives to arrays according to the sections in which they reside
* Add new URL scanner. This version is up to 20% faster. It will beSascha Schumann2000-09-191-0/+3
| | | | | | | enabled by default once I'm sure that it works in every case. To enable it, apply s/url_adapt_ext/url_adapt_ext_ex/ to session.c
* Security related updates:Zeev Suraski2000-09-091-0/+1
| | | | | | | | | - Introduce php_open_temporary_file(), in place of tempnam(). Still needs testing under UNIX (mkstemp()), works reliably under Windows now. - Reimplement the mechanism for unlinking uploaded files at the end of the request (was it ever tested?). Files moved with move_uploaded_file() will not be unlink()'d again, to avoid (albeit very unlikely) race conditions.
* Fix buildZeev Suraski2000-09-081-1/+1
|
* - Implemented is_upload_file()Zeev Suraski2000-09-081-0/+2
|
* @Add a php.ini option session.use_trans_sid to enable/disable trans-sid. ↵Sterling Hughes2000-09-041-0/+1
| | | | (Sterling)
* @- Added support for user defined 'tick' callback functions. This helpsAndrei Zmievski2000-09-011-0/+3
| | | | | @ emulate background processing. (Andrei)
* - Fix IMAP build problemZeev Suraski2000-08-241-1/+0
| | | | | - Allow external DLLs to use warn_not_available
* Cleaning up some messSascha Schumann2000-08-211-0/+2
|
* trans-sid rewrite, is now state-aware (fix for bug #3411 and friends)Hartmut Holzgraefe2000-08-011-0/+9
|
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-22/+10
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.