कोड इस प्रकार है -
उदाहरण
$object = new stdClass(); $object->name = "My name"; $myArray[] = $object;
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Suppose myArray already contains ‘a’ and ‘c’, the value of “My name” will be added to it. It becomes Array { a:0, c:1, “My name”:2 }
ऑब्जेक्ट बनाया जाता है और फिर इसे सरणी के अंत में धकेल दिया जाता है (जो पहले मौजूद था)।
वैकल्पिक
$myArray[] = (object) ['name' => 'My name'];