Answers for "php object to array of array"

PHP
7

php object to array

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

object to array php

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

Code answers related to "php object to array of array"

Browse Popular Code Answers by Language