<?php class Bar { private function doFoo() { echo 'yes'; } public function doBar() { $cb = [rand(0,1) ? 'Bar' : $this, 'doFoo']; $cb(); $cb = [rand(0,1) ? 'Bar' : $this, 'doFoo']; $cb(); $cb = [rand(0,1) ? 'Bar' : $this, 'doFoo']; $cb(); } } $b = new Bar(); $b->doBar();
You have javascript disabled. You will not be able to edit any code.