Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6551923
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:23:50+00:00 2026-05-25T12:23:50+00:00

I have a function which takes in about 10 arguments, in which most of

  • 0

I have a function which takes in about 10 arguments, in which most of them are optional. I was wondering if I could implement it in such a way that the user of the function does not need to bother with the order of the parameters.
For example:

public function foo($arg1, $arg2, $arg3='',$arg4='', $arg5='', $arg6='', $arg7=''){}

Now, when I use this function I can simply

$this->foo($arg1val, $arg2val, $arg6val);

Is there a way in php to do so?

Here is how I implemented this:
I’ve listed the parameters accepted by the function in the API, so the user can pass the parameters in any order in an array with key=>value pairs.

For example:

public function argumentsFilter($origParams, $newParams){
    $tmpArr = array();
        foreach ($origParams as $origKey){
        foreach($newParams as $newKey => $newVal){
                    if($newKey == $origKey){
                $tmpArr[$origKey] = $newVal;
                    }
        }
        if(empty($tmpArr[$origKey])){
                    $tmpArr[$origKey] = '';
        }
           }
        return $tmpArr;
}

public function foo($arg1, $arg2, $arg=array()){

    $validArgList = array('arg3', 'arg4', 'arg5', 'arg6', 'arg7');

    $correctedArgList = $this->argumentsFilter($validArgList, $arg);   

}

Is there a more elegant way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:23:51+00:00Added an answer on May 25, 2026 at 12:23 pm

    10 parameters for a function is clearly too much. Pass arrays instead:

    function foo(array $params) {
        $defaults = array('foo' => true, 'bar' => false, ...);
        $params = array_intersect_key($params, $defaults) + $defaults;
    
        // work with $params['foo']
        // maybe extract($params)
    }
    

    This example shows a function that accepts an arbitrary number of “named parameter” in any order, filters invalid values and establishes defaults values.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say I have a C function which takes a variable number of arguments: How
I have a SQL function called get_forecast_history(integer,integer) that takes two arguments, a month and
I have a function which takes a block of data and the size of
I have a function which takes a custom struct as the argument. how can
I have a function which takes in two parameters, and returns one or the
The title more or less says it all: I have a function which takes
I have a merge function which takes time O(log n) to combine two trees
I have a simple function which takes an array of characters as an argument,
I have a function in MATLAB which takes another function as an argument. I
I have a ColdFusion function foo which takes three args, and the second two

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.