onbject to array php code example
Example 1: object to array php
$array = (array) $yourObject;
Example 2: object to array php
//It is verry easy : just cast object to array
$array = (array)$object;
$array = (array) $yourObject;
//It is verry easy : just cast object to array
$array = (array)$object;