Skip to content

Instantly share code, notes, and snippets.

@tavy315
Created October 5, 2017 12:32
Show Gist options
  • Save tavy315/9e2bf1fdfe579eb4c36d68f1aefbf37d to your computer and use it in GitHub Desktop.
Save tavy315/9e2bf1fdfe579eb4c36d68f1aefbf37d to your computer and use it in GitHub Desktop.
Testing inexisting index
<?php
$a = [
'b' => [
'c' => [
'd' => 'test',
],
],
];
var_dump($a['b']['c']['d']);
var_dump(empty($a['b']['c']['d']));
var_dump($a['b']['C']['d']);
var_dump(empty($a['b']['C']['d']));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment