Answers for "php string[][] to array of objects"

PHP
6

php object to array

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

php stdclass to array

// The manual specifies the second argument of json_decode as:
//	 assoc
//		When TRUE, returned objects will be converted into associative arrays.


$array = json_decode(json_encode($booking), true);
Posted by: Guest on August-27-2020

Code answers related to "php string[][] to array of objects"

Browse Popular Code Answers by Language