History log of /PHP-5.3/Zend/zend_execute.c (Results 451 – 475 of 809)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 52406cb3 08-Aug-2002 Andi Gutmans

- 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.


Revision tags: dev
# 6025b804 03-Aug-2002 Zeev Suraski

MFZE1


# 0e7c1f46 01-Aug-2002 Stanislav Malyshev

MFZE1


# b0cf6c31 30-Jul-2002 Jason Greene

MFZE1 global declare


# 82c72f27 30-Jul-2002 Andrei Zmievski

@- Adding 'is' operator that can be used to check the type of a variable,
@ or its class. (Andrei)


# 41e3f4f0 26-Jul-2002 Andi Gutmans

- Fix problem with debug_backtrace() reported by Stig. We weren't reporting
- global function information because it wasn't available. We have to do
- an additional assignment per-function ca

- Fix problem with debug_backtrace() reported by Stig. We weren't reporting
- global function information because it wasn't available. We have to do
- an additional assignment per-function call so that it'll be available.
- Also don't define the global scope as function name _main_ but leave it
- empty so that frameworks like Pear can decide what they want to do.

show more ...


Revision tags: php-4.2.2
# 7b68f510 14-Jul-2002 Andi Gutmans

- Nuke delete(). It was a big mistake to introduce it and I finally
- understand why Java didn't do so.
- If you still want to control destruction of your object then either make
- sure y

- Nuke delete(). It was a big mistake to introduce it and I finally
- understand why Java didn't do so.
- If you still want to control destruction of your object then either make
- sure you kill all references or create a destruction method which you
- call yourself.

show more ...


# 35e8d813 14-Jul-2002 Andi Gutmans

- Nuke some unused code


Revision tags: INITIAL_IMPORT_SOURCEFORGE
# 677a9e87 06-Jul-2002 Andi Gutmans

- Fix problem where scope was lost in nested function calls.
- Thanks to Timm Friebe for diving into this one.


Revision tags: xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2
# ede84fa3 29-Jun-2002 Andi Gutmans

- Improve some error messages.


# b55a20ab 26-Jun-2002 Andi Gutmans

- Fix problem with scope's not changing correctly during method calls.
- Reapply a tiny optimization to the allocator so that in non-debug mode
- we clean memory without detecting leaks.


# 68663bf9 24-Jun-2002 Andi Gutmans

- Revert patch which checks at run-time if you're allowed to assign
- certain values by reference.
- We still need to find a solution for cases when this shouldn't be allowed
- as it migh

- Revert patch which checks at run-time if you're allowed to assign
- certain values by reference.
- We still need to find a solution for cases when this shouldn't be allowed
- as it might cause leaks.

show more ...


# 9c148f0d 23-Jun-2002 Andi Gutmans

- Fix problem with constructor not being inherited and called correctly.


# 690c85b4 16-Jun-2002 Andi Gutmans

- Fix bug in class constants
- Start centralizing main class lookups. This will help implement
- __autload()


Revision tags: php-4.3.0dev, php5_5_0
# b2015c56 11-Jun-2002 Andi Gutmans

- Fix problem with assigning functions by reference.


# 3a419fa8 10-Jun-2002 Stanislav Malyshev

Fix leak


Revision tags: RELEASE_0_90
# e449646b 05-Jun-2002 Sebastian Bergmann

Remove unused local variable.


# 2d6404d5 05-Jun-2002 Andi Gutmans

- Allow overloaded objects to receive the method name in its original
- case.


Revision tags: php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1
# 14a81f91 08-May-2002 Andi Gutmans

- Hopefully fix problems with debug_backtrace()


# b66c89c4 07-May-2002 Andi Gutmans

- More debug backtrace work. It still doesn't work very well...


Revision tags: php-4.2.1RC2
# 7e5ec2d7 02-May-2002 Andi Gutmans

Initial support for built-in backtracing.
There are still a few problems such as includes and calling other functions
from internal functions which aren't seen (will have to think if and how

Initial support for built-in backtracing.
There are still a few problems such as includes and calling other functions
from internal functions which aren't seen (will have to think if and how to
fix this).
Also the main scripts filename isn't available. Need to think about that.

show more ...


Revision tags: php-4.2.1RC1
# 51e797f1 23-Apr-2002 Harald Radi

some type cleanup work


Revision tags: php-4.2.0, php-4.2.0RC4, php-4.2.0RC3, php-4.2.0RC2, php-4.2.0RC1
# c84a4ead 15-Mar-2002 Andi Gutmans

- Pass TSRMLS to callbacks.


# db84afb2 15-Mar-2002 Andi Gutmans

- Scope fix. When calling an imported function the scope will change
- correctly to the scope of the functions class.
<?php

function Hello()
{

- Scope fix. When calling an imported function the scope will change
- correctly to the scope of the functions class.
<?php

function Hello()
{
print "Wrong one\n";
}

class MyClass {
static $hello = "Hello, World\n";

function Hello()
{
print self::$hello;
}

function Trampoline()
{
Hello();
}
}

import function Trampoline from MyClass;

Trampoline();
?>

show more ...


# 0ce019f7 15-Mar-2002 Andi Gutmans

- Fix issues with $this when using it by itself without indirection such as
- $this->foo.


1...<<11121314151617181920>>...33