Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Created February 24, 2016 04:47
Show Gist options
  • Save hsleonis/95c00aed92a8e137b41c to your computer and use it in GitHub Desktop.
Save hsleonis/95c00aed92a8e137b41c to your computer and use it in GitHub Desktop.
Looping through all the properties of object php
<?php
foreach ($obj as $key => $value) {
echo "$key => $value\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment