I look at the manual but can't seem to find the answer.
What is the default visibility in PHP for functions without a visibility declaration. Does PHP have a package visibility like in Java? Example:
class test {
-- is go public or private?
function go() {
}
}
The reason I asked because I've seen many contructors code written:
function __contruct() and some public function __constuct(). Are they equivalent?