Last active
October 27, 2017 17:51
-
-
Save ann71727/7d51454ac5c06b33e62e1f429feb1b97 to your computer and use it in GitHub Desktop.
PHP Convert Object To Array
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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