Answers for "how to sae a object into a 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
0

object to array in php

$array = (array)$object;
Posted by: Guest on November-09-2021

Code answers related to "how to sae a object into a array php"

Browse Popular Code Answers by Language