Skip to content

Instantly share code, notes, and snippets.

@ann71727
Last active October 27, 2017 17:51
Show Gist options
  • Save ann71727/7d51454ac5c06b33e62e1f429feb1b97 to your computer and use it in GitHub Desktop.
Save ann71727/7d51454ac5c06b33e62e1f429feb1b97 to your computer and use it in GitHub Desktop.
PHP Convert Object To Array
<?php
/*
* Convert Object To Array
* https://vector.cool
*/
function obj_to_arr($obj){
return (array) $obj;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment