Buenas, de vez en cuando me pongo a estudiar por mi cuenta programación y tengo una duda sobre las clases, es esta.
Suponiendo esta clase:
class Ejemplo {
private $this->variable;
public $this->variable2;
private function trincar() {
return "hola".$this->variable;
}
public function trincar2() {
return "hola".$variable;
}
}
Que diferencía hay entre usar en ese caso hipotetico $variable o $this->variable;