How to push objects in php?

by lindsey.homenick , in category: PHP General , a year ago

How to push objects in php?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by scotty_walker , a year ago

@lindsey.homenick 

In PHP, you can push objects to an array using the array_push() function or by directly assigning the object to a specific index of the array.


Here's an example using array_push():

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
// Creating an array
$myArray = array();

// Creating an object
$myObject = new stdClass();
$myObject->name = "John";
$myObject->age = 25;

// Pushing the object into the array
array_push($myArray, $myObject);


Alternatively, you can directly assign the object to a specific index of the array:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
// Creating an array
$myArray = array();

// Creating an object
$myObject = new stdClass();
$myObject->name = "John";
$myObject->age = 25;

// Assigning the object to a specific index of the array
$myArray[] = $myObject;


Both methods achieve the same result of pushing the object into the array.

Related Threads:

How to push objects to url in next.js?
How to push data into array in php?
How to push data object to array of object in php?
How to convert xml into array of objects in php?
How to sort multi dimensional array of objects in php?
How to implement the Mediator design pattern in PHP for communication between objects?