Skip to content

Instantly share code, notes, and snippets.

@j2deme
Created August 14, 2012 21:08
Show Gist options
  • Save j2deme/3353063 to your computer and use it in GitHub Desktop.
Save j2deme/3353063 to your computer and use it in GitHub Desktop.
"One line" PHP Array to Object
<?php
/**
* It's always nice to remeber that you can convert an array to an object just typecasting the variable.
* Clean and straight to the point :)
*/
$obj = (object) $array;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment