Answers for "php array to object to array"

PHP
7

php object to array

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

php convert array to object

$object = (object) $array;
Posted by: Guest on March-17-2020

Code answers related to "php array to object to array"

Browse Popular Code Answers by Language