<?php $colors = ["Red","Green","Blue","Orange","Yellow"]; $foo = new StdClass; $count = 0; foreach ($colors as $color) { $foo->{$count} = $color; $count += 1; } echo json_encode($foo);
You have javascript disabled. You will not be able to edit any code.