<?php class Car { public function getMilage() { echo 100000; } } $carObj = new Car(); $array = ['method'=>'getMilage', 'object'=>$carObj]; $mileage = $array['object']->{$array['method']}();
You have javascript disabled. You will not be able to edit any code.