Skip to content

Instantly share code, notes, and snippets.

@peteboere
Last active August 29, 2015 13:57
Show Gist options
  • Save peteboere/9829995 to your computer and use it in GitHub Desktop.
Save peteboere/9829995 to your computer and use it in GitHub Desktop.
Named arguments in PHP 5.4
<?php
function named_args($required, $options = [])
{
extract($options + [
'option_one' => false,
'option_two' => true,
'option_three' => 100,
]);
if ($option_one) {
// Code...
}
}
named_args('foo.csv', ['option_one' => true]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment