Answers for "php obeject to array"

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 values to array php

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

Code answers related to "php obeject to array"

Browse Popular Code Answers by Language