Answers for "string object data to array in php example"

PHP
6

php object to array

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

object to array php

//It is verry  easy : just cast object to array
$array =  (array)$object;
Posted by: Guest on February-22-2021

Code answers related to "string object data to array in php example"

Browse Popular Code Answers by Language