<?php function myTapFunction($value) { tempFn($value); return $value; } function tempFn($value) { return $value->increment(5); } class Test { public $val = 0; public function increment($val) { $this->val += $val; } } $a = new Test(); var_dump( myTapFunction($a) );
You have javascript disabled. You will not be able to edit any code.