| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -2/+2 |
| | | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
| * | Route php_stat() via streams/url_stat API (php_stream_stat_path). | Sara Golemon | 2003-11-28 | 1 | -5/+3 |
| | | | | | | This enables fopen-wrappers support on stat() and related family calls. | ||||
| * | Added php_strip_whitespace() and php_check_syntax() functions. | Ilia Alshanetsky | 2003-11-24 | 1 | -0/+2 |
| | | |||||
| * | Rename nanosleep() to time_nanosleep(). | Ilia Alshanetsky | 2003-11-14 | 1 | -1/+1 |
| | | |||||
| * | Added configure check for nanosleep() availability. | Ilia Alshanetsky | 2003-11-12 | 1 | -0/+2 |
| | | |||||
| * | Added nanosleep(), in addition to allowing setting of very short states. | Ilia Alshanetsky | 2003-11-12 | 1 | -0/+1 |
| | | | | | | This function is signal safe. | ||||
| * | Move typedef to where it is needed now. | Marcus Boerger | 2003-11-07 | 1 | -6/+2 |
| | | |||||
| * | Fix fgetcsv() to correctly support international characters | Moriyoshi Koizumi | 2003-10-04 | 1 | -0/+9 |
| | | | | | | | # note: mblen() is not a mbstring function, but is part of the ANSI standard # which is even supported by Microsoft's libc. | ||||
| * | Move shutdown code to better place | Moriyoshi Koizumi | 2003-08-07 | 1 | -0/+1 |
| | | |||||
| * | Replace fast_call_user_function() with zend_call_function() | Zeev Suraski | 2003-08-05 | 1 | -3/+3 |
| | | |||||
| * | Buckle your seatbelt, Dorothy, 'cause Aggregation is going bye-bye. | Sebastian Bergmann | 2003-06-28 | 1 | -1/+0 |
| | | |||||
| * | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -3/+3 |
| | | |||||
| * | convert array functions to use fast_call_user_function(), gives a nice | Sterling Hughes | 2003-05-20 | 1 | -0/+2 |
| | | | | | | performance win. | ||||
| * | - Rename stream_register_filter() to stream_filter_register(), | Derick Rethans | 2003-05-19 | 1 | -1/+1 |
| | | | | | | | stream_register_wrapper() to stream_wrapper_register() and added an alias for the latter change. | ||||
| * | Sorry Sterling, but this broke the ZTS build and I'd rather not 'ZTS fix' an ↵ | Sebastian Bergmann | 2003-04-01 | 1 | -2/+0 |
| | | | | | April's Fool joke. | ||||
| * | Add the landonize() and landonize_url() functions which provide a secure | Sterling Hughes | 2003-04-01 | 1 | -0/+2 |
| | | | | | | alternative to the sha1() and sha1_file() functions. | ||||
| * | Adjustment to user filters reimplementation. Make a bucket an object ↵ | Sara Golemon | 2003-03-09 | 1 | -1/+0 |
| | | | | | | | | containing a resource(the real bucket) and a data element for direct operations. Simplifies user interface and reduces number of function calls/reallocs needed. | ||||
| * | Initial re-implementation of userfilters after filterchain redesign by wez. ↵ | Sara Golemon | 2003-02-24 | 1 | -0/+5 |
| | | | | | More userspace API to come. | ||||
| * | Implement fprintf() and vfprintf(). | Wez Furlong | 2003-01-09 | 1 | -0/+2 |
| | | | | | | Add a couple of tests. | ||||
| * | Added stream_get_filters(); to list registered filters | Sara Golemon | 2003-01-05 | 1 | -0/+1 |
| | | |||||
| * | Implement user-space filters. | Wez Furlong | 2002-12-31 | 1 | -0/+3 |
| | | | | | | See ext/standard/tests/file/userfilters.phpt for an example of their use. | ||||
| * | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | | |||||
| * | Added separate functions for setting include_path, for environments | Stig Bakken | 2002-11-05 | 1 | -0/+3 |
| | | | | | | | where ini_set has been disabled. New functions: get_include_path(), set_include_path(), restore_include_path() | ||||
| * | @ - Added getopt() for parsing command line options and arguments. (Jon) | Jon Parise | 2002-09-30 | 1 | -0/+2 |
| | | |||||
| * | Implement a default_socket_timeout and auto_detect_line_endings ini options. | Wez Furlong | 2002-09-23 | 1 | -3/+0 |
| | | | | | | Also move user_agent from BG to FG. | ||||
| * | @ Made the User-Agent that php's fopen wrappers send, configurable via | Sterling Hughes | 2002-09-07 | 1 | -1/+4 |
| | | | | | | | | | | @ php.ini or via a stream context. (Sterling) The stream context is untested, but it should/could work :) Either way it doesn't make the rest of the code bad. Wez -- please take a looksie for me :) | ||||
| * | - Remove read_uploaded_file | Derick Rethans | 2002-03-23 | 1 | -1/+0 |
| | | |||||
| * | - Added read_uploaded_file (patch by Andrew Sitnikov <sitnikov@infonet.ee>) | Derick Rethans | 2002-03-23 | 1 | -0/+1 |
| | | |||||
| * | Adding object aggregation capability along with tests. | Andrei Zmievski | 2002-02-21 | 1 | -0/+2 |
| | | |||||
| * | Move type-handling functions into ext/standard/type.c (which had | jim winstead | 2002-01-09 | 1 | -17/+0 |
| | | | | | | a few otherwise unused functions in it). | ||||
| * | - Removed is_array_multidimensional | Derick Rethans | 2001-12-29 | 1 | -1/+0 |
| | | |||||
| * | - Added extra parameter to count() that recursively counts elements in an | Derick Rethans | 2001-12-29 | 1 | -0/+1 |
| | | | | | | | array and added is_array_multidimensional(). (patch by Vlad Bosinceanu <glipy@fx.ro>) | ||||
| * | Update headers. | Sebastian Bergmann | 2001-12-11 | 1 | -2/+2 |
| | | |||||
| * | renamed rot13 to str_rot13() | Hartmut Holzgraefe | 2001-12-06 | 1 | -1/+1 |
| | | |||||
| * | ported rot13() from php3 | Hartmut Holzgraefe | 2001-12-06 | 1 | -0/+2 |
| | | |||||
| * | @ Have rand() and mt_rand() seed automatically if srand() or mt_srand() has | Sterling Hughes | 2001-10-07 | 1 | -1/+4 |
| | | | | | | @ not been called. (Sterling) | ||||
| * | renamed doubleval to floatval and made doubleval an alias to floatval | Hartmut Holzgraefe | 2001-09-21 | 1 | -2/+2 |
| | | | | | | made is_float the function entry and is_double the alias | ||||
| * | Make rand thread safe when ZTS is defined. | Sterling Hughes | 2001-09-16 | 1 | -0/+2 |
| | | |||||
| * | revert bad commit. | foobar | 2001-09-05 | 1 | -7/+0 |
| | | |||||
| * | Merge RAND_REDESIGN into MAIN | Jeroen van Wolffelaar | 2001-09-03 | 1 | -0/+7 |
| | | |||||
| * | @- Added ini_get_all() function which returns all registered ini entries | foobar | 2001-08-30 | 1 | -0/+1 |
| | | | | | | or the entries for the specified extension. (Jani) | ||||
| * | Make the session module more independent | Zeev Suraski | 2001-08-26 | 1 | -1/+0 |
| | | |||||
| * | Get rid of TRANS_SID - it's always possible to use it now. | Zeev Suraski | 2001-08-25 | 1 | -6/+2 |
| | | |||||
| * | Implement import_request_variables() | Zeev Suraski | 2001-08-08 | 1 | -0/+1 |
| | | |||||
| * | fix possible crash - we should never keep the zval** as they might point | Thies C. Arntzen | 2001-08-04 | 1 | -1/+1 |
| | | | | | | somewhere into the Engine. (there's still a new bug in strtok - hunting;-) | ||||
| * | Don't copy the strtok parameter | Sascha Schumann | 2001-08-03 | 1 | -0/+1 |
| | | |||||
| * | Replace our strtok implementation with a binary-safe one which code | Sascha Schumann | 2001-08-03 | 1 | -2/+3 |
| | | | | | | does not cause headaches when reading it. Also happens to be a bit quicker. | ||||
| * | More TSRMLS_FETCH annihilation. Enough for today... | Zeev Suraski | 2001-07-31 | 1 | -1/+1 |
| | | |||||
| * | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -11/+1 |
| | | |||||
| * | Provide typedefs for php_int32 | Sascha Schumann | 2001-07-18 | 1 | -0/+2 |
| | | |||||
