Neden kullanmak ve bir {içinde, private ve protected functions/variables
public, arasındaki fark nedir ne zaman ve [(4)] }?
Örnekler:
// Public
public $variable;
public function doSomething(){
...code...
}
// Private
private $variable;
private function doSomething(){
...code...
}
// Protected
protected $variable;
protected function doSomething(){
...code...
}