Created
May 20, 2014 02:13
-
-
Save cferdinandi/7a06e2402466be3b912b to your computer and use it in GitHub Desktop.
Multi-argument PHP function. Source: http://stackoverflow.com/questions/10185634/php-function-arguments-use-an-array-or-not
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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