I can call a class using "->", but it complains about the ::
I see on the net where :: is used. Is there a good explanation on when
to use one over the other or the differences?
$help = new help();
$help->foo();
$help::foo();
class help{
function foo(){
echo "test";
}
}
I see on the net where :: is used. Is there a good explanation on when
to use one over the other or the differences?
$help = new help();
$help->foo();
$help::foo();
class help{
function foo(){
echo "test";
}
}
Comment