Skip to content

Instantly share code, notes, and snippets.

@cferdinandi
Created May 20, 2014 02:13
Show Gist options
  • Save cferdinandi/7a06e2402466be3b912b to your computer and use it in GitHub Desktop.
Save cferdinandi/7a06e2402466be3b912b to your computer and use it in GitHub Desktop.
<?php
function some_name( array $options = array() ) {
// Set defaults for all passed options
$options = array_merge( array(
'property1' => 'default1',
'property2' => 'default2',
), $options);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment