Skip to content

Instantly share code, notes, and snippets.

@chadmandoo
Created June 30, 2014 21:29
Show Gist options
  • Save chadmandoo/a8b425a401dfcb5b4f31 to your computer and use it in GitHub Desktop.
Save chadmandoo/a8b425a401dfcb5b4f31 to your computer and use it in GitHub Desktop.
Arrays and Object
<?php
//Object with an array inside
$object->array['value']['value'];
//Array with an object
$array['object']->value;
//Accessing a property of an object
$object->value;
//Accessing array value
$array['value'];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment