summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'dev'.devSVN Migration2002-08-061-1812/+0
|
* @- Adding 'is' operator that can be used to check the type of a variable,Andrei Zmievski2002-07-301-0/+54
| | | | | @ or its class. (Andrei)
* - MFH of the crap removalDerick Rethans2002-07-151-6/+0
|
* - Really implement bool increment/decrement as flip-flop.Andi Gutmans2002-07-151-8/+2
|
* MFZE1Derick Rethans2002-07-141-2/+2
|
* - MFZE1Derick Rethans2002-07-141-6/+6
|
* - MFZE1Derick Rethans2002-07-141-0/+12
|
* - Fix bug 15037Andi Gutmans2002-06-291-10/+18
| | | | | - Bump version to alpha2-dev
* - WS fixAndi Gutmans2002-06-281-2/+2
|
* some type cleanup workHarald Radi2002-04-231-4/+4
|
* - Another couple of indirection fixes.Andi Gutmans2002-03-121-1/+1
| | | | | - Make class_entry->refcount be part of the structure and not allocated.
* Mega-commit: Enter the new object modelStanislav Malyshev2002-02-071-19/+31
| | | | | | | 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.
* Happy New Year.Sebastian Bergmann2002-01-061-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* MFZE1Stanislav Malyshev2001-09-051-1/+23
|
* - MFZE1Andi Gutmans2001-08-261-1/+5
|
* - Fix a bug in method calls.Andi Gutmans2001-08-161-5/+12
| | | | | - Try to get the old copying behavior of objects to work (doesn't work yet).
* MFZE1Zeev Suraski2001-08-131-86/+6
|
* - More work on making objects workAndi Gutmans2001-08-111-4/+1
|
* - Fix some places which create objects. The fixes are ugly and will beAndi Gutmans2001-08-111-18/+25
| | | | | revised when things start working well
* WhitespaceZeev Suraski2001-08-111-11/+11
|
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-301-49/+59
|
* - Fix buildAndi Gutmans2001-07-281-1/+0
|
* - More object macros.Andi Gutmans2001-07-281-22/+29
|
* Get rid of ELS_*(), and use TSRMLS_*() instead.Zeev Suraski2001-07-271-1/+1
| | | | | | 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 double->long conversionStanislav Malyshev2001-07-181-2/+3
|
* Get rid of ZVAL_RESET...Zeev Suraski2001-07-111-5/+6
|
* Get rid of some inlinesZeev Suraski2001-07-111-5/+5
|
* - Remove bogus comment.Andi Gutmans2001-06-291-1/+0
|
* Fixed autoconversion of negative values to double (Fix bug #11685)Zeev Suraski2001-06-261-3/+3
|
* Treat numeric strings as numbers in the increment operatorZeev Suraski2001-05-101-2/+26
|
* - Previous patch for too early freeing of resources seemed to have worked.Andi Gutmans2001-04-291-11/+1
| | | | | - Clean it up a bit.
* - Try and solve the too early resource destruction problem.Andi Gutmans2001-04-291-3/+3
|
* include limits.h if availableZeev Suraski2001-04-281-1/+0
|
* - Move all cases into switch().Andi Gutmans2001-04-281-64/+78
|
* Resources weren't being properly destroyed by the convert_to_*() functionsZeev Suraski2001-04-281-3/+26
|
* - More whitespace fixes while I'm at it.Andi Gutmans2001-04-271-1/+1
|
* - Update copyright yearAndi Gutmans2001-02-261-1/+1
|
* - Remove two unused functionsAndi Gutmans2001-02-121-41/+0
|
* Add notice when auto-converting array to stringStanislav Malyshev2000-12-181-0/+2
|
* Fix #8279 (-2147483647 > 2147483647).Stanislav Malyshev2000-12-171-1/+1
| | | | | # Long addition/subtraction may not fit long.
* Fix #8195: strncasecmp returns incorrect valueStanislav Malyshev2000-12-121-1/+1
|
* Fix buildZeev Suraski2000-11-211-3/+3
|
* Initial steps to move the INI mechanism to the Zend engineZeev Suraski2000-10-291-0/+26
|
* - Make increment of "" become "1"Andi Gutmans2000-10-131-0/+7
|
* - Commiting Sterling's new multi_convert* functionsAndi Gutmans2000-09-051-1/+45
|
* Add strncasecmp functionStanislav Malyshev2000-07-261-0/+25
| | | | | @ Added strncasecmp function (Andi)
* Move some stuff to zend_operators.h which is required by theSascha Schumann2000-06-141-10/+0
| | | | | moved inline functions.
* Add optional support for C0x inline semantics.Sascha Schumann2000-06-131-59/+1
| | | | | | | These are enabled by specifying `--enable-c0x-inline' on the command line. We might add an autoconf check for this particular feature later.
* - Fixed problem when using uninitialized values in comparisons with strings.Andi Gutmans2000-06-101-0/+13
| | | | | - They behave as empty strings again just like in PHP 3.