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 7579207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T17:37:10+00:00 2026-05-30T17:37:10+00:00

Possible Duplicate: Any way to specify optional parameter values in PHP? just randomly came

  • 0

Possible Duplicate:
Any way to specify optional parameter values in PHP?

just randomly came across this.

If I have a function like so:

public function getSomething($orderBy='x', $direction = 'DESC', $limit=null){

//do something random

}

When calling the function is it possible to ignore the first two fields and leave them default yet specify the 3rd.

For example:

$random = $this->my_model->getSomething(USE_DEFAULT, USE_DEFAULT, 10);

I know I can pass the 1st and 2nd parameters but all im asking is if their is some kind of special keyword that just says use the default value.

Hope that makes sense. its not a problem, just curious.

thanks for reading

  • 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-30T17:37:11+00:00Added an answer on May 30, 2026 at 5:37 pm

    You need to do that yourself. You can use null to indicate that a default value should be used:

    public function getSomething($orderBy = null, $direction = null, $limit = null) {
        // fallbacks
        if ($orderBy === null) $orderBy = 'x';
        if ($direction === null) $direction = 'DESC';
    
        // do something random
    }
    

    Then pass null when calling it to indicate that you want to use the defaults:

    $random = $this->my_model->getSomething(null, null, 10);
    

    Another possible solution that I use sometimes is an additional parameter at the very end of the parameter list, containing all optional parameters:

    public function foo($options = array()) {
        // merge with defaults
        $options = array_merge(array(
            'orderBy'   => 'x',
            'direction' => 'DESC',
            'limit'     => null
        ), $options);
    
        // do stuff
    }
    

    That way you do not need to specify all optional arguments. array_merge() ensures that you are always dealing with a complete set of options. You would use it like this:

    $random = $this->my_model->foo(array('limit' => 10));
    

    It seems like there is no required parameter this particular case, but if you need one, simply add it in front of the optional ones:

    public function foo($someRequiredParameter, $someOtherRequiredParameter, $options = array()) {
        // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Is there any way to kill a Thread in Python? So this
Possible Duplicate: Eclipse's project clean This might be a foolish question but any way,
Possible Duplicate: Is there any way to detect strings like putjbtghguhjjjanika? php check if
Possible Duplicate: Any way to add HttpHandler programatically in .NET? Is there a way
Possible Duplicate: Is there any way to determine text direction from CultureInfo in asp.net?
Possible Duplicate: Reference: Comparing PHP's print and echo Is there any major and fundamental
Possible Duplicate: PHP: Script for generating Crossword game? Does anyone know any PHP-based simple
Possible Duplicate: C# member variable initialization; best practice? Is there any benefit to this:
Possible Duplicate: Any way to access array directly after method call? In C# and
Possible Duplicate: Is there any way in C# to override a class method with

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.