PHP: Create Object without Class
// Create a Standard Class $object = new stdClass(); $object->property = "Hello"; $object->item[0] = "Testing"; $object->item[1] = "Another Test"; // You can even nest items: $object->something->else = "A nested item"; // If nesting doesn't work immediately, you may have to do this first: $object->something = new stdClass(); $object->something->else = "A nested item";