Welcome Guest, Not a member yet? Register   Sign In
optional parameters in functions
#1

[eluser]richzilla[/eluser]
I dont know if this is a general PHP question or wether code igniter implements its own solution,but here goes. My pages have a builder function for the page that takes 2 parameters, the page to be loaded, and and any data that may or may not be needed by the page. Ive done quite a lot of asp.net/C# and i know you can specify a parameter as optional with the ? symbol, but is there a similar solution in php?

cheers
#2

[eluser]Dam1an[/eluser]
For an optional parameter, you just set it a default value
So:
Code:
function my_function($i_need_this_paramter, $optional_second_parameter = 'a default value') {
  ...
}
#3

[eluser]jedd[/eluser]
Mind, you don't *need* to mention the second parameter there - CI will happily ignore additional parameters that it doesn't know what to do with anyway. And, also, you don't need to set a default value for any of your parameters. If there's no default, the variable is not set (or set to NULL - I forget which, and it's easy enough for you to test).
#4

[eluser]InsiteFX[/eluser]
Hi,

Code:
if (empty($variable)
{
   // variable is empty no value
   dothis;
}
else
{
    // variable has a value
    dothis;
}

// Or you can do a single check like this

if ( ! empty($variable)
{
   // variable has a value
   dothis;
}

Enjoy
InsiteFX




Theme © iAndrew 2016 - Forum software by © MyBB