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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.