开发者

Call an object function returned by a method within php

There is any syntax to use somethi开发者_如何学Cng like this?:

<?php

function get_foo() {
    return new Foo();
}

get_foo()->foo_method();

?>


Using PHP 5.3 this works fine for me:

<?php

class Foo
{
    public function foo_method()
    {
        print 'hi';
    }
}

function get_foo()
{
    return new Foo();
}

get_foo()->foo_method();

prints hi

Stuff like this is used all over the place for database wrappers since you can do db()->query($sql) without any trouble.


yeah PHP has this syntax, if a function returns an object, then you may call the objects property or method appended to the function's call exactly as it is in your question

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜