| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | MFH | Zeev Suraski | 2001-08-15 | 1 | -6/+0 |
| | | |||||
| * | Track down a few more functions that don't check for 0 args and use | Rasmus Lerdorf | 2001-08-13 | 1 | -3/+3 |
| | | | | | | faster mechanism | ||||
| * | We don't consistently check for args passed to functions that don't | Rasmus Lerdorf | 2001-08-13 | 1 | -0/+3 |
| | | | | | | | | | | take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performance is unlikely to be a factor, not throwing a warning on the wrong number of args passed to a function is at best inconsistent, and at worst it could hide a bug. So, add a few such checks. There are still lots of cases out there. | ||||
| * | - Fix API | Zeev Suraski | 2001-08-13 | 1 | -1/+1 |
| | | | | | | - Update NEWS | ||||
| * | Whitespace | Zeev Suraski | 2001-08-11 | 1 | -49/+49 |
| | | |||||
| * | Implement import_request_variables() | Zeev Suraski | 2001-08-08 | 1 | -0/+85 |
| | | |||||
| * | @- Added vprintf() and vsprintf() functions that allow passing all arguments | Andrei Zmievski | 2001-08-07 | 1 | -0/+2 |
| | | | | | | @ after format as an array. (Andrei) | ||||
| * | we can no longer register internal-classes once the script is started. | Thies C. Arntzen | 2001-08-06 | 1 | -1/+4 |
| | | | | | | therefore the "incomplete class" is now registered at MINIT time. | ||||
| * | some more eliminate-fetches-or-escalate-them-at-least | Sascha Schumann | 2001-08-05 | 1 | -1/+1 |
| | | |||||
| * | - TSRMLS_FETCH work | Zeev Suraski | 2001-08-05 | 1 | -1/+1 |
| | | | | | | - whitespace fixes | ||||
| * | 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 | -1/+4 |
| | | |||||
| * | Replace our strtok implementation with a binary-safe one which code | Sascha Schumann | 2001-08-03 | 1 | -0/+1 |
| | | | | | | does not cause headaches when reading it. Also happens to be a bit quicker. | ||||
| * | These new math functions are not supported on Win32 | Frank M. Kromann | 2001-08-01 | 1 | -0/+6 |
| | | |||||
| * | - Added a few new math functions from Jesus Castagnetto. | Andrei Zmievski | 2001-08-01 | 1 | -0/+13 |
| | | | | | | | - Converted to Z_* macros. @- Added a few new math functions. (Jesus) | ||||
| * | More TSRMLS_FETCH annihilation. Enough for today... | Zeev Suraski | 2001-07-31 | 1 | -3/+3 |
| | | |||||
| * | More TSRMLS_FETCH work. Got it under 400 now. | Zeev Suraski | 2001-07-31 | 1 | -8/+8 |
| | | |||||
| * | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -6/+4 |
| | | |||||
| * | Zend compatibility patch | Zeev Suraski | 2001-07-30 | 1 | -10/+10 |
| | | |||||
| * | More TSRMLS_FETCH work, and a bit of cleanup | Zeev Suraski | 2001-07-30 | 1 | -8/+0 |
| | | |||||
| * | Zend compatibility patch | Zeev Suraski | 2001-07-30 | 1 | -21/+20 |
| | | |||||
| * | More TSRMLS_FETCH annihilation (Zend compatibility patch) | Zeev Suraski | 2001-07-30 | 1 | -4/+4 |
| | | |||||
| * | Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵ | Zeev Suraski | 2001-07-30 | 1 | -4/+5 |
| | | | | | the way | ||||
| * | - And more... | Andi Gutmans | 2001-07-29 | 1 | -1/+1 |
| | | |||||
| * | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -35/+11 |
| | | |||||
| * | - Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 1 | -8/+9 |
| | | | | | | | | - Move to the new ts_allocate_id() API This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it... | ||||
| * | fix newly introduced mem-leak in assert-module | Thies C. Arntzen | 2001-07-23 | 1 | -0/+1 |
| | | |||||
| * | Improved bailout mechanism, supports nested bailouts a-la try..catch | Zeev Suraski | 2001-07-21 | 1 | -12/+3 |
| | | | | | | Note: You may *not* return directly from a catch block | ||||
| * | Add getmygid() and safe_mode_gid ini directive to allow safe mode to do | Rasmus Lerdorf | 2001-07-09 | 1 | -0/+2 |
| | | | | | | | | 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) | ||||
| * | @ - assert() now accepts the array(&$obj,"methodname") syntax. (Thies) | Thies C. Arntzen | 2001-07-09 | 1 | -2/+0 |
| | | | | | | + some cleanups | ||||
| * | Reset strtok_string, so that strtok can be used in all session handler | Sascha Schumann | 2001-07-08 | 1 | -0/+1 |
| | | | | | | functions. | ||||
| * | (PHP nl_langinfo) Added function when provided by OS | Wez Furlong | 2001-07-04 | 1 | -1/+8 |
| | | | | | | | | | | (PHP htmlentities, htmlspecialchars) Uses nl_langinfo to determine charset @- Added nl_langinfo() (when OS provides it) that returns locale information. (Wez Furlong) # There are a lot of constants used by nl_langinfo; should we do something # along the lines of what we do for syslog? | ||||
| * | - Fixed proto's (Patch by Zak) | Derick Rethans | 2001-07-02 | 1 | -13/+13 |
| | | |||||
| * | - Use ALLOC_HASHTABLE() instead of emalloc(sizeof(HashTable)) | Andi Gutmans | 2001-06-19 | 1 | -1/+1 |
| | | |||||
| * | Clean-up | Zeev Suraski | 2001-06-13 | 1 | -2/+1 |
| | | | | | | Remove a lot of 100% redundent code | ||||
| * | Fix folding and clean up some extensions | Rasmus Lerdorf | 2001-06-06 | 1 | -1/+2 |
| | | |||||
| * | vim-6 does folding - clean up a bunch of missing folding tags plus | Rasmus Lerdorf | 2001-06-05 | 1 | -0/+1 |
| | | | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions | ||||
| * | move to php_strtok_r() | Sterling Hughes | 2001-05-27 | 1 | -2/+3 |
| | | |||||
| * | - Fix problem of output initialization | Andi Gutmans | 2001-05-23 | 1 | -1/+0 |
| | | |||||
| * | @ Added the CONNECTION_ABORTED, CONNECTION_TIMEOUT and CONNECTION_NORMAL | Sterling Hughes | 2001-05-23 | 1 | -0/+4 |
| | | | | | | @ constants. (Zak) | ||||
| * | - Start nuking not needed GINIT | Andi Gutmans | 2001-05-22 | 1 | -11/+2 |
| | | |||||
| * | Moving some functions into Zend. | Andrei Zmievski | 2001-05-21 | 1 | -91/+0 |
| | | |||||
| * | - EG's are passed automatically to internal functions. | Andi Gutmans | 2001-05-21 | 1 | -2/+0 |
| | | |||||
| * | Added get_defined_constants() function. Returns an associative array of | Sean Bright | 2001-05-21 | 1 | -0/+21 |
| | | | | | | | | | 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. | ||||
| * | - Reversed 'fix' for #9698 | Derick Rethans | 2001-05-20 | 1 | -4/+1 |
| | | | | | | | | - Fix for bug #9698/#10681 (patch by kettler@gmx.net) @- Added the 'u' modifier to printf/sprintf which prints unsigned longs. @ (Derick) | ||||
| * | Fixed bug #10964 | foobar | 2001-05-19 | 1 | -0/+6 |
| | | |||||
| * | munmap() file in RSHUTDOWN, if PHPWRITE fails. | Sascha Schumann | 2001-05-18 | 1 | -0/+12 |
| | | |||||
| * | @ - Added disk_total_space() to return the total size of a filesystem. | Jon Parise | 2001-05-15 | 1 | -0/+1 |
| | | | | | | @ (Patch from Steven Bower) | ||||
| * | @ - Renamed diskfreespace() to disk_free_space() to conform to established | Jon Parise | 2001-05-15 | 1 | -1/+2 |
| | | | | | | @ naming conventions. (jon) | ||||
| * | Clean up call_user_func_*(). | Andrei Zmievski | 2001-05-14 | 1 | -9/+10 |
| | | |||||
