Answers for "array of objects to array php"

PHP
6

php object to array

//This works best
$array = json_decode(json_encode($object), true);
Posted by: Guest on January-28-2021
1

convert object to array php

$array = (array) $object;
Posted by: Guest on June-24-2021

Code answers related to "array of objects to array php"

Browse Popular Code Answers by Language