Answers for "cast array object 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

object to array php

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

object to array php

$array = (array) $yourObject;
Posted by: Guest on September-18-2020
1

convert object to array php

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

object values to array php

array_values(get_object_vars($object));
Posted by: Guest on September-18-2020

Browse Popular Code Answers by Language