Skip to content

Instantly share code, notes, and snippets.

@cgray
Created January 15, 2014 04:48
Show Gist options
  • Save cgray/8430978 to your computer and use it in GitHub Desktop.
Save cgray/8430978 to your computer and use it in GitHub Desktop.
<?php
function array_get_value($array, $index, $default = null){
return array_key_exists($index, $array)?$array[$index]:$default;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment