ID:          43408
 Updated by:  [EMAIL PROTECTED]
 Reported By: [EMAIL PROTECTED]
 Status:      Assigned
 Bug Type:    Scripting Engine problem
 PHP Version: 6CVS-2007-11-26 (snap)
 Assigned To: colder
 New Comment:

Hi Thanks for this comment so lets wait for a decision from the
government. :)


Previous Comments:
------------------------------------------------------------------------

[2007-12-12 17:42:36] [EMAIL PROTECTED]

Fallbacks occur in static/self calls, as static/self resolve to "foo"
and it returns foo as expected.

However, when you do a parent::demo() you actually call bar::demo(),
which is currently understood as a "fully qualified call": the caller is
not passed.

There are plans to allow explicit parent call to pass the caller, but
this is still under discussion.

------------------------------------------------------------------------

[2007-12-12 10:36:30] [EMAIL PROTECTED]

Assigned to the author of the LSB patch.

------------------------------------------------------------------------

[2007-11-26 09:44:10] [EMAIL PROTECTED]

Description:
------------
The Function get_called_class works not as expected.
the new introduced static call works correct, the self call too but if
you call the demo class with parent you dont get foo as result. This
should be so because its not possible to overwrite a existing class in a
 static class with late static binding.

get_called_class() should return in every call 'foo' and not as shown
with parent::demo() a 'bar'



Reproduce code:
---------------
<?php
abstract class bar
{
    public static function demo()
    {
        var_dump(get_called_class());
    }
}

class foo extends bar
{
    public static function parent_demo()
    {
        parent::demo();
    }
    public static function self_demo()
    {
        self::demo();
    }
    public static function static_demo()
    {
        static::demo();
    }
}

echo 'bar::demo()' . PHP_EOL;
bar::demo();
echo 'foo::demo()' . PHP_EOL;
foo::demo();
echo 'foo::parent_demo()' . PHP_EOL;
foo::parent_demo();
echo 'foo::self_demo()' . PHP_EOL;
foo::self_demo();
echo 'foo::static_demo()' . PHP_EOL;
foo::static_demo();


?>

Expected result:
----------------
bar::demo()
string(3) "bar"
foo::demo()
string(3) "foo"
foo::parent_demo()
string(3) "bar"
foo::self_demo()
string(3) "foo"
foo::static_demo()
string(3) "foo"

Actual result:
--------------
bar::demo()
string(3) "bar"
foo::demo()
string(3) "foo"
foo::parent_demo()
string(3) "foo"
foo::self_demo()
string(3) "foo"
foo::static_demo()
string(3) "foo"


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=43408&edit=1

Reply via email to