ID:               24286
 Updated by:       [EMAIL PROTECTED]
 Reported By:      terjeto at stud dot ntnu dot no
 Status:           Verified
 Bug Type:         Zend Engine 2 problem
 Operating System: RedHat 9.0
 PHP Version:      5CVS-2003-06-22 (dev)
 New Comment:

Why with "$object->attribute()"
"$object->method_name()" should be called and not
"$object->attribute()" and how the engine is supposed to tell that? Is
$foo->x() now meaning "call method 'x' of object '$foo'" or "take
property 'x' of object '$foo' and call method with this name on object
'$foo'"? My opinion is that it _always_ should mean the latter and
never the former. 


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

[2003-07-10 07:57:44] tony2001 at phpclub dot net

I expect that using attribute of the object as method name it will work
as it's already working with PHP4.

That is:
$object->attribute = 'method_name';
and with
$object->attribute();
$object->method_name(); should be called.
Maybe I'm wrong, but in case of $object->obj_attribute->attribute(); we
have the same situation - we're calling
$object->obj_attribite->{method, which name contains
$object->obj_attribute->attribute }();

Am I wrong?

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

[2003-07-10 07:19:37] [EMAIL PROTECTED]

What is expected to be result of $test_obj->array_var[0][0][0]("simple
test") call?

Which function or method of which object should be called? What with
$test_obj->foo->array_var[0][0][0]("simple test") - should the calling
object be $test_obj and function name array_var[0][0][0] (should it be
global $array_var[0][0][0]? global $foo->array_var[0][0][0]? or
property foo->array_var[0][0][0] of $test_obj?) or the calling object
should be $test_obj->foo and array_var[0][0][0] should be the method
name?

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

[2003-07-10 06:25:06] tony2001 at phpclub dot net

There is no matter what Smarty version do you use.
PHP complains on this syntax:
<?
class Test {
    var $array_var = Array();
    function test() {
        $this->array_var[0][0][0] = "test_method";
    }
    function test_method($echo_var) {
        echo $echo_var;
    }
}

$test_obj = new test;
$test_obj->array_var[0][0][0]("simple test"); //line 15
?>
Fatal error: Method name must be a string in /www/index.php on line 15

Guys, please, fix this very annoying bug at least in beta2.
On 10 Jul 2003 this bug still exists in CVS.

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

[2003-07-09 08:09:13] bloso at mailbr dot com dot br

I've got the same error message:

Fatal error: Method name must be a string in
/var/www/htdocs/scorphus/phplab/countracker/tpl/templates_c/%%200/%%2001463753/index.html.php
on line 28

index.html.php line 28:
<br><?php echo $this->_plugins['function']['eval'][0](array('var' =>
$this->_config[0]['vars']['credits']), $this) ; ?>

PHP Version: 5.0.0b2-dev (php5-200307071930.tar.gz)
Configure Command: './configure' '--with-mysql' '--with-apxs'
System: Slackware 9 (2.4.20) and Debian 3.0 r1 (2.4.20)
Also unsing: Smarty 2.4.2

Hope it helps,
Pablo.

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

[2003-06-29 10:55:12] [EMAIL PROTECTED]

Works fine in php 4.3.3, so this appears to be a BC issue.

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

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/24286

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

Reply via email to