Skip to content

Instantly share code, notes, and snippets.

@erikfrerejean
Created July 24, 2014 21:18
Show Gist options
  • Save erikfrerejean/8cb4ad921fa0f3cf11f3 to your computer and use it in GitHub Desktop.
Save erikfrerejean/8cb4ad921fa0f3cf11f3 to your computer and use it in GitHub Desktop.
<?php
$array = array(
'145' => 4,
'213' => 99,
'etc' => 'etc',
);
var_dump(isset($array['145'])); // Returns FALSE
var_dump(array_key_exists(145, $array)); // Returns FALSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment