<?php $array = ["abc","def"]; $object = new stdclass(); foreach($array as $index => $value) { $object->$index = $value; } var_dump(get_object_vars($object));
You have javascript disabled. You will not be able to edit any code.