Extra Light PHP Framework
Array
This helper is loaded automatically by the system
Content
array_to_object()
$array = array(
'foo' => 'bar',
'lorem' => 'ipsum'
);
$obj = array_to_object($array);
object_to_array()
$products = database_object_result(); //example
$products_array = object_to_array($products);