What does this line mean?
if ( ${fun("str1")} (fun("str2"), ${fun("str3")}) )
Evaluate function returning_value_for_str1_of_fun()_name with the parameters return value for str2 and variable with name return_value_for_str3 ?
if statement - executes some code if one condition is true. if...else statement - executes some code if a condition is true and another code if that condition is false. if...elseif...else statement - executes different codes for more than two conditions. switch statement - selects one of many blocks of code to be ...
PHP allows you to choose what action to take based on the result of a condition.
We can use if statements inside if statements. These statements are called Nested If Statements.
In PHP, there are 4 different types of Conditional Statements.
This tests the return value of the function, whose name is the value in the variable named fun("str1")
, and given the arguments fun("str2")
and the value of the variable named fun("str3")
.
Example:
If fun("str1")
equals "x"
, fun("str2")
equals 34
, and fun("str3")
equals "y"
, then the statement would look like:
if ( $x (34, $y) )
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With