Jump to content

Adding a hash of options to a function


calebzahnd

Recommended Posts

This would seem like a simple question, but I can't seem to find the answer anywhere. Perhaps I'm asking it wrong.

 

What I'd like to do is add a hash of optional arguments for a function.

 

For example, I might have a function that has two required arguments, and three optional arguments.

 

The only way I know to design this function is to put the arguments in a specific order, and fill them out to the degree needed. So if the 5th argument needs to be called, but the 3rd and 4th don't, you'd still have to give them values.

 

function example($arg1, $arg2, $arg3, $arg4, $arg5)

 

Must be used by:

example('red', 'horse', '', '', 'texas');

 

Is there anyway of designing a function to only use the specified arguments?

 

example('red', 'horse', ['arg5: texas']);

Link to comment
https://forums.phpfreaks.com/topic/214321-adding-a-hash-of-options-to-a-function/
Share on other sites

You could set up your array to take a single parameter of an array of the values.

function example($argArray)
{
    extract($argArray);
     
    //Function continues from here
    //...
}

example(array('arg1'=>'red', 'arg2'=>'horse', 'arg5'=>'texas'));

This problem does not hold only to functional programming but also to OO some solve this problem like:

 

$var = $obj->foo('red', 'horse')
           ->setState('texas');

 

getFoo() returns an object that can be configured

 

function setState($state) {
    //do bla en blabla
    return $this;
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.