Answers for "transform obj to array php"

PHP
1

object to array php

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

convert object to array php

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

Browse Popular Code Answers by Language