<?php class Foo { public function getName(){ return 'name-foo';} public function getId(){ return 'id-foo';} } $objOtherClass = new Foo; $arr = []; $arr['school'] = 'school'; /* option 1 */ $valueAccess = true; $arr['name'] = 'test'; $arr['id'] = 1; if($valueAccess) { $arr['name'] = $objOtherClass->getName(); $arr['id'] = $objOtherClass->getId(); } /*option 2 */ $valueAccess = true; $name = 'test'; $id = 1; if($valueAccess) { $name = $objOtherClass->getName(); $id = $objOtherClass->getId(); } $arr['name'] = $name; $arr['id'] = $id;
You have javascript disabled. You will not be able to edit any code.