I got 2x public functions in a class that must call 1 private function with different parameters also in the same class... for some reason it tell me that it can\'t find the
You have to use $this to refer to the instance and the T_OBJECT_OPERATOR to access/mutate/call members/methods of an instance, e.g.
$this
$this->do();
Please go through the