Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP pass default argument to function

I have a PHP function, like this:

function($foo = 12345, $bar = false){}

What I want to do, is call this function with the default argument of $foo passed, but $bar set to true, like this (more or less)

function(DEFAULT_VALUE, true);

How do I do it? How do I pass an argument as a function's default value without knowing that value?

Thanks in advance!

like image 685
arik Avatar asked Jan 05 '11 15:01

arik


3 Answers

This is not natively possible in PHP. There are workarounds like using arrays to pass all parameters instead of a row of arguments, but they have massive downsides.

The best manual workaround that I can think of is defining a constant with an arbitrary value that can't collide with a real value. For example, for a parameter that can never be -1:

define("DEFAULT_ARGUMENT", -1);

and test for that:

function($foo = DEFAULT_ARGUMENT, $bar = false){}
like image 71
Pekka Avatar answered Oct 20 '22 06:10

Pekka


put them the other way round:

function($bar = false, $foo = 12345){}

function(true);
like image 22
Freddie Avatar answered Oct 20 '22 05:10

Freddie


The usual approach to this is that if (is_null($foo)) the function replaces it with the default. Use null, empty string, etc. to "skip" arguments. This is how most built-in PHP functions that need to skip arguments do it.

<?php
function($foo = null, $bar = false)
    {
    if (is_null($foo))
        {
        $foo = 12345;
        }
    }
?>
like image 3
Core Xii Avatar answered Oct 20 '22 06:10

Core Xii