Skip to content

Instantly share code, notes, and snippets.

@MushuLeDragon
Last active May 15, 2018 11:53
Show Gist options
  • Save MushuLeDragon/9021f146641d46b82d2b42b27258dc90 to your computer and use it in GitHub Desktop.
Save MushuLeDragon/9021f146641d46b82d2b42b27258dc90 to your computer and use it in GitHub Desktop.
<?php
// Convert sdtClass Object (stdClass Array) to Array
function stdClassToArray($variable) {
$variable = json_decode(json_encode($variable), true);
return $variable[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment