Welcome Guest, Not a member yet? Register   Sign In
Static object inside class
#8

[eluser]Jonathon Hill[/eluser]
There are typos in your class. It should be:

Code:
class Foo
{
    public function func() {}
}

class Bar
{
    public function Bar() { self::$foob = new Foo(); }
    public static $foob;
}

# call like this
Bar::$foob->func();


Messages In This Thread
Static object inside class - by El Forum - 12-17-2008, 10:30 AM
Static object inside class - by El Forum - 12-17-2008, 10:34 AM
Static object inside class - by El Forum - 12-17-2008, 10:55 AM
Static object inside class - by El Forum - 12-17-2008, 11:54 AM
Static object inside class - by El Forum - 12-17-2008, 12:02 PM
Static object inside class - by El Forum - 12-17-2008, 12:07 PM
Static object inside class - by El Forum - 12-17-2008, 01:31 PM
Static object inside class - by El Forum - 12-20-2008, 10:45 PM



Theme © iAndrew 2016 - Forum software by © MyBB