Answers for "make object into array php"

PHP
7

php object to array

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

convert object to array in php

// It will work Perfectly Fine.
$arr = json_decode(json_encode($obj), true);
Posted by: Guest on August-31-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