first_set
Summary
Returns the first parameter that is set (or FALSE).Usage
first_set( value1 [, value2 [, ... ] ] )
Parameters
Name | Type | Description | Required |
---|---|---|---|
value1 | any | A variable/value that should be evaluated. | Yes. |
value2 | any | Another variable/value that should be evaluated. | No. |
Returns
The first value that is set or FALSE.Description
This operator evaluates all parameters until one of them is found to be set. The parameter that is found to be set will be returned. If none of the parameters are set, the operator will return FALSE.
Examples
Example 1
{if first_set( $a, $b, $c )} The truth is out there. {else} The day the earth stood still. {/if}
As long as $a, $b and $c are undeclared/unset, the following output will be produced: "The day the earth stood still".
Example 2
{first_set( $a, 256, $b )}
As long as $a is undeclared/unset, the following output will be produced: "256".
Balazs Halasy (05/02/2004 10:40 am)
Balazs Halasy (04/05/2005 2:07 pm)
Comments
This code will give you unexpected results
Thursday 04 August 2005 2:12:04 pm
Massimiliano Bariola
will display
MYVAR = ; 0
instead of
MYVAR = 0; 0
so, first_set handles 0s as "unset". this either needs to be documented or marked as a bug.
Re: This code will give you unexpected results
Monday 25 September 2006 8:01:36 am
André
1.$idanag is not defined as far as I can see. Debug is your friend.
2. a value of 0 = is_set, its not true but it's set. But the ouput would be the same anyway.