Skip to content

Instantly share code, notes, and snippets.

@slifin
Last active July 19, 2016 08:44
Show Gist options
  • Select an option

  • Save slifin/f66809707f81343642163dfe04129fa0 to your computer and use it in GitHub Desktop.

Select an option

Save slifin/f66809707f81343642163dfe04129fa0 to your computer and use it in GitHub Desktop.
<?php
function get($base, $offset, $default = NULL) {
return (create_function('$base,$default', 'return isset($base' . $offset . ') ? $base' . $offset . ' : $default;'))($base, $default);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment