| 831fbcf |
|
01-Jan-2013 |
Xinchen Hui <laruence@php.net> |
Happy New Year
/PHP_5_3/Zend/zend_operators.h
|
| e4ca0ed |
|
01-Jan-2012 |
Felipe Pena <felipe@php.net> |
- Year++
/PHP_5_3/Zend/zend_operators.h
|
| 927bf09 |
|
01-Jan-2011 |
Felipe Pena <felipe@php.net> |
- Year++
/PHP_5_3/Zend/zend_operators.h
|
| d2281d1 |
|
05-Jan-2010 |
Sebastian Bergmann <sebastian@php.net> |
sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.php
/PHP_5_3/Zend/zend_operators.h
|
| b907aa4 |
|
04-Jun-2009 |
Matt Wilmas <mattwil@php.net> |
MFH: Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit) * See bug #42868 (presumably-rare platform with different results in 5.2) * On 32-bit platforms with 64-bit long type, a zend_long64 cast has been added, otherwise it's the same as 5.2 * Use this conversion method everywhere instead of some plain (long) casts Added 'L' parameter parsing specifier to ensure a LONG_MAX/MIN limit: * Essentially what 5.3's new conversion was doing in most cases * Functions with "limit" or "length" type params could be updated to use this, and prevent confusing overflow behavior with huge numbers (*also* in 5.2) - See bug #47854, for example; or even #42868 again # Test updates coming
/PHP_5_3/Zend/zend_operators.h
|
| 1338aa2 |
|
10-May-2009 |
Jani Taskinen <jani@php.net> |
sync with HEAD
/PHP_5_3/Zend/zend_operators.h
|
| 6bb0ac9 |
|
18-Mar-2009 |
Matt Wilmas <mattwil@php.net> |
MFH: Fixed bug #45877 (Array key '2147483647' left as string)
/PHP_5_3/Zend/zend_operators.h
|
| f868955 |
|
05-Jan-2009 |
Felipe Pena <felipe@php.net> |
MFH: - Fixed bug #46701 (Creating associative array with long values in the key fails on 32bit linux) Patch by Shire
/PHP_5_3/Zend/zend_operators.h
|
| 08659c2 |
|
31-Dec-2008 |
Sebastian Bergmann <sebastian@php.net> |
MFH: Bump copyright year, 3 of 3.
/PHP_5_3/Zend/zend_operators.h
|
| cf7384a |
|
12-Aug-2008 |
Felipe Pena <felipe@php.net> |
- MFH: Constness (Added const qualifier to several function parameters)
/PHP_5_3/Zend/zend_operators.h
|
| 4bd1aec |
|
05-Aug-2008 |
Stanislav Malyshev <stas@php.net> |
fix memnstr bug, by Laurent Gaffie
/PHP_5_3/Zend/zend_operators.h
|
| 023211d |
|
24-Jul-2008 |
Moriyoshi Koizumi <moriyoshi@php.net> |
- MFH: Constify read-only arguments
/PHP_5_3/Zend/zend_operators.h
|
| e19f520 |
|
21-Jul-2008 |
Scott MacVicar <scottmac@php.net> |
Optimisation for zend_memnstr when the needle is only a single character. (Patch by Michal Dziemianko - GSoC08)
/PHP_5_3/Zend/zend_operators.h
|
| 5448274 |
|
19-Mar-2008 |
Antony Dovgal <tony2001@php.net> |
MFH
/PHP_5_3/Zend/zend_operators.h
|
| 7b1bc75 |
|
19-Mar-2008 |
Antony Dovgal <tony2001@php.net> |
MFH: add zend_atol()
/PHP_5_3/Zend/zend_operators.h
|
| fb50ef1 |
|
14-Feb-2008 |
Dmitry Stogov <dmitry@php.net> |
Reverted memrchr() patch, because it is broken on linux 64-bit
/PHP_5_3/Zend/zend_operators.h
|
| 9fdaddc |
|
13-Feb-2008 |
Dmitry Stogov <dmitry@php.net> |
Use memrchr() instead of zend_memrchr() if available. (Nuno)
/PHP_5_3/Zend/zend_operators.h
|
| d1dded8 |
|
31-Dec-2007 |
Sebastian Bergmann <sebastian@php.net> |
MFH: Bump copyright year, 2 of 2.
/PHP_5_3/Zend/zend_operators.h
|
| 8ce1211 |
|
11-Oct-2007 |
Marcus Boerger <helly@php.net> |
- MFH debug object helper
/PHP_5_3/Zend/zend_operators.h
|
| 4b4d634 |
|
07-Oct-2007 |
Yiduo (David) Wang <davidw@php.net> |
MFH: Added macros for managing zval refcounts and is_ref statuses
/PHP_5_3/Zend/zend_operators.h
|
| 226c56f |
|
21-Jul-2007 |
Jani Taskinen <jani@php.net> |
MFH: Fixed compiler warnings
/PHP_5_3/Zend/zend_operators.h
|
| 4223aa4 |
|
01-Jan-2007 |
Sebastian Bergmann <sebastian@php.net> |
MFH: Bump year.
/PHP_5_3/Zend/zend_operators.h
|
| ff9d0fc |
|
26-Dec-2006 |
Ilia Alshanetsky <iliaa@php.net> |
is_numeric_string() optimization # Original Patch by Matt Wilmas
/PHP_5_3/Zend/zend_operators.h
|
| 698ea5f |
|
20-Dec-2006 |
Antony Dovgal <tony2001@php.net> |
MFH
/PHP_5_3/Zend/zend_operators.h
|
| 7e1973d |
|
11-Dec-2006 |
Ilia Alshanetsky <iliaa@php.net> |
Minor optimization (2-3%) from Brian Shire
/PHP_5_3/Zend/zend_operators.h
|
| 6b651f8 |
|
04-Dec-2006 |
Stanislav Malyshev <stas@php.net> |
Improve tolower()-related functions on Windows and VC2005 by caching locale and using tolower_l function. # Gives 10-18% speedup on bench.php # Does not change behaviour for non-windows
/PHP_5_3/Zend/zend_operators.h
|
| 6277ba9 |
|
08-Aug-2006 |
Antony Dovgal <tony2001@php.net> |
there is no realiable way to detect memrchr() presence because of a mess in glibc so let's use our own implementation
/PHP_5_3/Zend/zend_operators.h
|
| 5794832 |
|
08-Aug-2006 |
Derick Rethans <derick@php.net> |
- Added some docs here so that nobody needs to figure it out once more.
/PHP_5_3/Zend/zend_operators.h
|
| b8617a6 |
|
08-Aug-2006 |
Antony Dovgal <tony2001@php.net> |
add zend_memrchr()
/PHP_5_3/Zend/zend_operators.h
|
| 637a404 |
|
09-May-2006 |
Marcus Boerger <helly@php.net> |
- MFH as discussed . zend_exception_get_default() -> zend_exception_get_default(TSRMLS_D) . zend_get_error_exception() -> zend_get_error_exception(TSRMLS_D) . added E_RECOVERABLE_ERROR . added ZEND_TOSTRING_FUNC_NAME . added __tostring function cache to zend_class_entry . added ZEND_NAMED_ME . modified ZEND_ME_MAPPING to support method flags . added ZEND_MN . method entries now use prefix "zim_" instead of "zif_" . drop EG(ze1_compatibility_mode) . changed cast handler, now without (int should_free): typedef int (*zend_object_cast_t)(zval *readobj, zval *retval, int type TSRMLS_DC); . changed get_iterator, now receives whether value is by ref: zend_object_iterator *(*get_iterator)(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); . added zend_objects_store_add_ref_by_handle . added zend_objects_store_del_ref_by_handle . convert_to_explicit_type(pzv, type)
/PHP_5_3/Zend/zend_operators.h
|
| 61e93cc |
|
04-Jan-2006 |
Andi Gutmans <andi@php.net> |
- Update copyright notices to 2006
/PHP_5_3/Zend/zend_operators.h
|
| af264f6 |
|
20-Dec-2005 |
Marcus Boerger <helly@php.net> |
- MFH add Z_OBJVAL*() macros
/PHP_5_3/Zend/zend_operators.h
|
| 014729d |
|
17-Nov-2005 |
Antony Dovgal <tony2001@php.net> |
MFH: make GCC happy and suppress the warning
/PHP_5_3/Zend/zend_operators.h
|
| b5c8fcb |
|
17-Nov-2005 |
Ilia Alshanetsky <iliaa@php.net> |
Allow zend_parse_parameters to handle non-well formed integers, but raise E_NOTICE in the process.
/PHP_5_3/Zend/zend_operators.h
|
| 916815b |
|
03-Aug-2005 |
foobar <sniper@php.net> |
Bump up the year
/PHP_5_3/Zend/zend_operators.h
|
| 9839614 |
|
18-Jan-2005 |
Ilia Alshanetsky <iliaa@php.net> |
Fixed bug #30726 (-.1 like numbers are not being handled correctly).
/PHP_5_3/Zend/zend_operators.h
|
| e612284 |
|
03-Nov-2004 |
Derick Rethans <derick@php.net> |
- Fixed bug #30630: Added a BSD based strtod function that is locale-independent.
/PHP_5_3/Zend/zend_operators.h
|
| da136e6 |
|
15-Sep-2004 |
Ilia Alshanetsky <iliaa@php.net> |
MFH: Fixed a bug causing ".123" * "90" and alike to return a 0.
/PHP_5_3/Zend/zend_operators.h
|
| 4bae5cb |
|
11-Sep-2004 |
Derick Rethans <derick@php.net> |
- MFB: Added the sorting flag SORT_LOCALE_STRING to the sort() functions which makes them sort based on the current locale. (Derick)
/PHP_5_3/Zend/zend_operators.h
|
| 6dd2613 |
|
16-Jul-2004 |
Ilia Alshanetsky <iliaa@php.net> |
MFB: Fixed bug #28800 (strings beginning with "inf" improperly converted).
/PHP_5_3/Zend/zend_operators.h
|
| 1c7cfe7 |
|
03-Apr-2004 |
Andi Gutmans <andi@php.net> |
- Nuke code which hasn't been in use for ages.
/PHP_5_3/Zend/zend_operators.h
|
| 39ac957 |
|
04-Mar-2004 |
Derick Rethans <derick@php.net> |
- Fixed a 64bit issue (for zend_builtin_functions.c, module_number is an int). - Change the MAX_LENGTH_OF_LONG constant to 20, as LONG_MAX is 20 characters. (Patches by Ard Biesheuven)
/PHP_5_3/Zend/zend_operators.h
|
| 1727c6a |
|
20-Feb-2004 |
Hartmut Holzgraefe <hholzgra@php.net> |
more EXTERN_C wrapping of ZEND_API prototypes
/PHP_5_3/Zend/zend_operators.h
|
| 0458bf1 |
|
14-Jan-2004 |
Andi Gutmans <andi@php.net> |
- Remove bogus macros
/PHP_5_3/Zend/zend_operators.h
|
| ccfc46b |
|
08-Jan-2004 |
foobar <sniper@php.net> |
- Happy new year and PHP 5 for rest of the files too.. # Should the LICENSE and Zend/LICENSE dates be updated too?
/PHP_5_3/Zend/zend_operators.h
|
| a08c1e4 |
|
09-Dec-2003 |
foobar <sniper@php.net> |
- Brought ext/bcmath to the new millennium # consistency..
/PHP_5_3/Zend/zend_operators.h
|
| 4dba05d |
|
24-Nov-2003 |
Marcus Boerger <helly@php.net> |
Add new interface ArrayAccess to use objects as Arrays
/PHP_5_3/Zend/zend_operators.h
|
| 973f606 |
|
29-Oct-2003 |
Moriyoshi Koizumi <moriyoshi@php.net> |
Use pretty macro instead.
/PHP_5_3/Zend/zend_operators.h
|
| cf90932 |
|
22-Jul-2003 |
Zeev Suraski <zeev@php.net> |
Improve infrastructure of numeric handling of elements in symbol tables. When you want to work with a symbol table, and you don't know whether you have a numeric ("string that looks like a number") or a string element in your hands, use zend_symtable_*() functions, in place of zend_hash_*() functions.
/PHP_5_3/Zend/zend_operators.h
|
| 5efc65f |
|
30-Jun-2003 |
Shane Caraveo <shane@php.net> |
this fixes including this header in a c++ file (vs6)
/PHP_5_3/Zend/zend_operators.h
|
| f68c7ff |
|
10-Jun-2003 |
James Cox <imajes@php.net> |
updating license information in the headers.
/PHP_5_3/Zend/zend_operators.h
|
| ae91065 |
|
23-May-2003 |
Sterling Hughes <sterling@php.net> |
move HANDLE_NUMERIC() from the hash table implementation upstream to the places that actually need to use it.
/PHP_5_3/Zend/zend_operators.h
|
| 402f5f7 |
|
21-May-2003 |
Marcus Boerger <helly@php.net> |
Use same parameter order as strcpy()
/PHP_5_3/Zend/zend_operators.h
|
| 7af8ead |
|
21-May-2003 |
Marcus Boerger <helly@php.net> |
Make zend_str_tolower_copy() a copy function (like stccpy). Supply a dup version (like estrdup). Fix tolower() handling. # Havin copy and dup allows to use the faster version even with # memory not allocated by emalloc.
/PHP_5_3/Zend/zend_operators.h
|
| ca6ca5e |
|
20-May-2003 |
Sterling Hughes <sterling@php.net> |
optimize the lookups by avoiding a copy and then another pass Naked Dancing Girls should be given to: Myself, Zeev, Marcus, and George Schlossnagle (in no particular order)
/PHP_5_3/Zend/zend_operators.h
|
| cb71ac0 |
|
20-May-2003 |
Hartmut Holzgraefe <hholzgra@php.net> |
C++ compile fixes
/PHP_5_3/Zend/zend_operators.h
|
| 2154cdd |
|
08-Apr-2003 |
Andrei Zmievski <andrei@php.net> |
Move memnstr into Zend and make an alias for BC in PHP.
/PHP_5_3/Zend/zend_operators.h
|
| 3fc8528 |
|
26-Mar-2003 |
Sebastian Bergmann <sebastian@php.net> |
Eliminate TSRMLS_FETCH() calls in destroy_op_array() and zend_get_class_entry().
/PHP_5_3/Zend/zend_operators.h
|
| 26dd849 |
|
05-Mar-2003 |
Zeev Suraski <zeev@php.net> |
Add support for interfaces
/PHP_5_3/Zend/zend_operators.h
|
| 31196cf |
|
02-Feb-2003 |
Zeev Suraski <zeev@php.net> |
whitespace
/PHP_5_3/Zend/zend_operators.h
|
| 333406b |
|
01-Feb-2003 |
foobar <sniper@php.net> |
- Added some missing CVS $Id$ tags, headers and footers.
/PHP_5_3/Zend/zend_operators.h
|
| c073b76 |
|
14-Jan-2003 |
Andi Gutmans <andi@php.net> |
- Change "is" to "instanceof" as it explains better what the operator means. - "is_a" was also appropriate but ugly.
/PHP_5_3/Zend/zend_operators.h
|
| d27b3d3 |
|
12-Jan-2003 |
Stanislav Malyshev <stas@php.net> |
Remove Z_OBJ - it's internal to Zend objects, no generic function except those in zend_object_handlers.c should use it. Add Z_OBJ_HANDLER macro for easy access to handlers
/PHP_5_3/Zend/zend_operators.h
|
| 9b09ba6 |
|
01-Jan-2003 |
Zeev Suraski <zeev@php.net> |
Win32 build fix
/PHP_5_3/Zend/zend_operators.h
|
| 30dafe2 |
|
01-Jan-2003 |
Stanislav Malyshev <stas@php.net> |
use handler for Z_OBJPROP
/PHP_5_3/Zend/zend_operators.h
|
| 2c5d4b8 |
|
31-Dec-2002 |
Sebastian Bergmann <sebastian@php.net> |
Bump year.
/PHP_5_3/Zend/zend_operators.h
|
| 671fff2 |
|
30-Nov-2002 |
Andi Gutmans <andi@php.net> |
h WHitespace
/PHP_5_3/Zend/zend_operators.h
|
| e842ef9 |
|
12-Oct-2002 |
Ilia Alshanetsky <iliaa@php.net> |
MFZE1 (floats & locale issue)
/PHP_5_3/Zend/zend_operators.h
|
| d3617c5 |
|
09-Oct-2002 |
Ilia Alshanetsky <iliaa@php.net> |
MFZE1 zend_str_tolower issue.
/PHP_5_3/Zend/zend_operators.h
|
| ee7b8f9 |
|
26-Sep-2002 |
Ilia Alshanetsky <iliaa@php.net> |
MFZE1
/PHP_5_3/Zend/zend_operators.h
|
| 52406cb |
|
08-Aug-2002 |
Andi Gutmans <andi@php.net> |
- Make new 'is' operator work with classes only and return false when - the object isn't of the said class or the value isn't an object.
/PHP_5_3/Zend/zend_operators.h
|
| 82c72f2 |
|
30-Jul-2002 |
Andrei Zmievski <andrei@php.net> |
@- Adding 'is' operator that can be used to check the type of a variable, @ or its class. (Andrei)
/PHP_5_3/Zend/zend_operators.h
|
| 7a06754 |
|
30-Apr-2002 |
Stanislav Malyshev <stas@php.net> |
Make OBJCE return zend_class_entry*, also some cleanups
/PHP_5_3/Zend/zend_operators.h
|
| 51e797f |
|
23-Apr-2002 |
Harald Radi <phanto@php.net> |
some type cleanup work
/PHP_5_3/Zend/zend_operators.h
|
| 6ac6cb1 |
|
22-Apr-2002 |
Harald Radi <phanto@php.net> |
added get_class_entry callback handler to the object handlers structure
/PHP_5_3/Zend/zend_operators.h
|
| 6608f07 |
|
07-Feb-2002 |
Stanislav Malyshev <stas@php.net> |
Mega-commit: Enter the new object model Note: only standard Zend objects are working now. This is definitely going to break custom objects like COM, Java, etc. - this will be fixed later. Also, this may break other things that access objects' internals directly.
/PHP_5_3/Zend/zend_operators.h
|
| 62dc854 |
|
06-Jan-2002 |
Sebastian Bergmann <sebastian@php.net> |
Happy New Year.
/PHP_5_3/Zend/zend_operators.h
|
| d863d52 |
|
11-Dec-2001 |
Sebastian Bergmann <sebastian@php.net> |
Update headers.
/PHP_5_3/Zend/zend_operators.h
|
| ea48c0c |
|
16-Aug-2001 |
Andi Gutmans <andi@php.net> |
- Fix a bug in method calls. - Try to get the old copying behavior of objects to work (doesn't work yet).
/PHP_5_3/Zend/zend_operators.h
|
| 8722b31 |
|
13-Aug-2001 |
Zeev Suraski <zeev@php.net> |
MFZE1
/PHP_5_3/Zend/zend_operators.h
|
| 5af7770 |
|
07-Aug-2001 |
Andi Gutmans <andi@php.net> |
- Sync Engine2 CVS with latest Engine CVS
/PHP_5_3/Zend/zend_operators.h
|
| 8ce8324 |
|
30-Jul-2001 |
Zeev Suraski <zeev@php.net> |
More TSRMLS_FETCH annihilation
/PHP_5_3/Zend/zend_operators.h
|
| b40db64 |
|
28-Jul-2001 |
Andi Gutmans <andi@php.net> |
- Small patch to allow fixing the PHP tree to be compatible w/ the initial - Zend 2 objects patch. Hopefully I can commit that this week.
/PHP_5_3/Zend/zend_operators.h
|
| d2cbd01 |
|
06-May-2001 |
Zeev Suraski <zeev@php.net> |
Yikes, that would have been a very bad bug :)
/PHP_5_3/Zend/zend_operators.h
|
| cd033b1 |
|
06-May-2001 |
Zeev Suraski <zeev@php.net> |
Fix autoconversion of hexadecimal strings It's time to close bug #5404 :)
/PHP_5_3/Zend/zend_operators.h
|
| acd56b0 |
|
27-Apr-2001 |
Andi Gutmans <andi@php.net> |
- More whitespace fixes while I'm at it.
/PHP_5_3/Zend/zend_operators.h
|
| d2c9e80 |
|
26-Feb-2001 |
Andi Gutmans <andi@php.net> |
- Update copyright year
/PHP_5_3/Zend/zend_operators.h
|
| 4afacc0 |
|
12-Feb-2001 |
Andi Gutmans <andi@php.net> |
- Remove two unused functions
/PHP_5_3/Zend/zend_operators.h
|
| f8dabac |
|
21-Nov-2000 |
Zeev Suraski <zeev@php.net> |
Fix build
/PHP_5_3/Zend/zend_operators.h
|
| 471d070 |
|
03-Nov-2000 |
Zeev Suraski <zeev@php.net> |
Fix build
/PHP_5_3/Zend/zend_operators.h
|
| 4d3fc68 |
|
03-Nov-2000 |
Zeev Suraski <zeev@php.net> |
Add RESVAL macros
/PHP_5_3/Zend/zend_operators.h
|
| 1fd0913 |
|
29-Oct-2000 |
Zeev Suraski <zeev@php.net> |
Initial steps to move the INI mechanism to the Zend engine
/PHP_5_3/Zend/zend_operators.h
|
| f136e5c |
|
27-Oct-2000 |
Andrei Zmievski <andrei@php.net> |
Added macros for object properties and class entry.
/PHP_5_3/Zend/zend_operators.h
|
| 99771d9 |
|
26-Sep-2000 |
Sascha Schumann <sas@php.net> |
Remove --enable-c9x-inline option. We now use a syntax which is compatible with all compilers by providing the function with static linkage in every compilation unit.
/PHP_5_3/Zend/zend_operators.h
|
| 813f7b5 |
|
19-Sep-2000 |
Andi Gutmans <andi@php.net> |
- Add Z_BVAL* macros
/PHP_5_3/Zend/zend_operators.h
|
| 715774b |
|
05-Sep-2000 |
Andi Gutmans <andi@php.net> |
- Commiting Sterling's new multi_convert* functions
/PHP_5_3/Zend/zend_operators.h
|
| 1373a16 |
|
26-Jul-2000 |
Stanislav Malyshev <stas@php.net> |
Add strncasecmp function @ Added strncasecmp function (Andi)
/PHP_5_3/Zend/zend_operators.h
|
| a617217 |
|
03-Jul-2000 |
Sascha Schumann <sas@php.net> |
Replace macros which begin with an underscore through an appropiately named macro.
/PHP_5_3/Zend/zend_operators.h
|
| 0404a02 |
|
18-Jun-2000 |
Sascha Schumann <sas@php.net> |
Welcome zend_finite(n). This chooses the best combination of what is available: finite, isfinite, isinf, isnan
/PHP_5_3/Zend/zend_operators.h
|
| 7565347 |
|
14-Jun-2000 |
Sascha Schumann <sas@php.net> |
Move some stuff to zend_operators.h which is required by the moved inline functions.
/PHP_5_3/Zend/zend_operators.h
|
| 35f43ad |
|
14-Jun-2000 |
Sascha Schumann <sas@php.net> |
Rename C0x-inline to C9x-inline, and frame preprocessor directives in zend_gcc_inline.c with #ifndef C9X_INLINE_SEMANTICS..#endif.
/PHP_5_3/Zend/zend_operators.h
|
| df74f1d |
|
13-Jun-2000 |
Sascha Schumann <sas@php.net> |
Add optional support for C0x inline semantics. These are enabled by specifying `--enable-c0x-inline' on the command line. We might add an autoconf check for this particular feature later.
/PHP_5_3/Zend/zend_operators.h
|
| dae76aa |
|
03-Jun-2000 |
Zeev Suraski <zeev@php.net> |
Support comparisons of arrays (with arrays) and objects (with objects)
/PHP_5_3/Zend/zend_operators.h
|
| b5447a4 |
|
26-May-2000 |
Andi Gutmans <andi@php.net> |
- Fixed scanning decimal numbers in internationalized environments. They should - always be in standard US format e.g. 23.3
/PHP_5_3/Zend/zend_operators.h
|
| 0aefa3e |
|
17-May-2000 |
Andi Gutmans <andi@php.net> |
- Add support for string_compare_function() and number_compare_function(). UNTESTED!
/PHP_5_3/Zend/zend_operators.h
|
| 8669a15 |
|
17-May-2000 |
Sascha Schumann <sas@php.net> |
Add missing prototype
/PHP_5_3/Zend/zend_operators.h
|
| ddc36fb |
|
28-Apr-2000 |
Zeev Suraski <zeev@php.net> |
Make convert_to_string() allocations traceable
/PHP_5_3/Zend/zend_operators.h
|
| 9e10ac5 |
|
20-Apr-2000 |
Zeev Suraski <zeev@php.net> |
- Change macro names from Z to Z_
/PHP_5_3/Zend/zend_operators.h
|
| 9022a4b |
|
20-Apr-2000 |
Zeev Suraski <zeev@php.net> |
Add some macros for nicer zval handling
/PHP_5_3/Zend/zend_operators.h
|
| d191777 |
|
18-Apr-2000 |
Zeev Suraski <zeev@php.net> |
Add convert_to_writable_*_ex() macros (unused at this time)
/PHP_5_3/Zend/zend_operators.h
|
| 521c8af |
|
29-Mar-2000 |
Torben Wilson <torben@php.net> |
Added !== (is not identical) operator.
/PHP_5_3/Zend/zend_operators.h
|
| 5e55e47 |
|
06-Mar-2000 |
Zeev Suraski <zeev@php.net> |
It's official now...
/PHP_5_3/Zend/zend_operators.h
|
| 0ac9536 |
|
19-Feb-2000 |
Zeev Suraski <zeev@php.net> |
(c) patch
/PHP_5_3/Zend/zend_operators.h
|
| f77e6a4 |
|
19-Feb-2000 |
Zeev Suraski <zeev@php.net> |
Generalize macros
/PHP_5_3/Zend/zend_operators.h
|
| c2fd675 |
|
08-Feb-2000 |
Andrei Zmievski <andrei@php.net> |
Patches from Walter for strncmp() stuff.
/PHP_5_3/Zend/zend_operators.h
|
| fafbf6d |
|
24-Jan-2000 |
Zeev Suraski <zeev@php.net> |
- Implement declare() with declarables framework - Implement ticks - Germany&Norway - 5 points!
/PHP_5_3/Zend/zend_operators.h
|
| f2d703e |
|
31-Dec-1999 |
Zeev Suraski <zeev@php.net> |
- Nuke undefined_variable_string - Introduce IS_UNSET
/PHP_5_3/Zend/zend_operators.h
|
| 7a205f6 |
|
19-Oct-1999 |
Andi Gutmans <andi@php.net> |
- Preliminary submit of Thie's patch. Will fix the rest on Windows as this was added on UNIX with patch. Changed IS_SAME -> IS_IDENTICAL
/PHP_5_3/Zend/zend_operators.h
|
| c279668 |
|
15-Oct-1999 |
Andrei Zmievski <andrei@php.net> |
unstatic'fy is_numeric_string()
/PHP_5_3/Zend/zend_operators.h
|
| 4d7c162 |
|
15-Oct-1999 |
Andi Gutmans <andi@php.net> |
- Add convert_to_number_ex()
/PHP_5_3/Zend/zend_operators.h
|
| 86357a9 |
|
01-Oct-1999 |
Andi Gutmans <andi@php.net> |
- Move is_ref back to being an unsigned char and not a bit field.
/PHP_5_3/Zend/zend_operators.h
|
| d8895c0 |
|
24-Sep-1999 |
Sascha Schumann <sas@php.net> |
Add _ex API implementation for booleans.
/PHP_5_3/Zend/zend_operators.h
|
| 52e769d |
|
16-Sep-1999 |
Zeev Suraski <zeev@php.net> |
Introduce convert_to_*_ex()
/PHP_5_3/Zend/zend_operators.h
|
| 8d1de13 |
|
19-Jul-1999 |
Zeev Suraski <zeev@php.net> |
0.91 update
/PHP_5_3/Zend/zend_operators.h
|
| b5b1117 |
|
16-Jul-1999 |
Zeev Suraski <zeev@php.net> |
License update
/PHP_5_3/Zend/zend_operators.h
|
| 80f1ce5 |
|
15-Jun-1999 |
Stig S. Bakken <stig@php.net> |
* added zend_binary_strcasecmp()
/PHP_5_3/Zend/zend_operators.h
|
| 1aa2c5c |
|
23-Apr-1999 |
Zeev Suraski <zeev@php.net> |
Ok, call me crazy, because I probably am. Thread safe version now uses a C++ scanner object. Works fully.
/PHP_5_3/Zend/zend_operators.h
|
| 573b460 |
|
07-Apr-1999 |
Andi Gutmans <andi@php.net> |
Zend Library
/PHP_5_3/Zend/zend_operators.h
|