Don't go 'splainin' what scope is, I've coded in both C++ and Java, other than PHP, Javascript, some Perl, yada yada yada. So I have a pretty good idea what scope is. 😛
First off, if this belongs in Coding, please move it. I couldn't decide where this topic belonged, so ...
Okay, here is my question. What is the scope of a variable in a class? More specifically, what is the scope in the extension of the class? For example:
class HiWorld
{
$blah, functions, vars, etc.
}
class ByeWorld extends hiWorld
{
echo($blah);
}
So ... What do I have to do? If you guys want to see the specific code I'm talking about, I can link you.