Advertisements
Advertisements
प्रश्न
Explain the working of Conditional Statements in PHP?
थोडक्यात उत्तर
उत्तर
Conditional statements are useful for writing decision-making logics. It is the most important feature of many programming languages, including PHP. They are implemented by the following types:
- if Statement:
If statement executes a statement or a group of statements if a specific condition is satisfied as per the user expectation. - if…else Statement:
If a statement executes a statement or a group of statements if a specific condition is satisfied by the user expectation. When the condition gets false (fail) the else block is executed. - if…elseif….else Statement:
If-elseif-else statement is a combination of if-else statements. More than one statement can execute the condition based on user needs. - Switch Case:
The switch statement is used to perform different actions based on different conditions.
shaalaa.com
Php Conditional Statements
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
What will be the output of the following PHP code?
<?php
$x;
if ($x)
print “hi” ;
else
print “how are u”;
?>
What will be the output of the following PHP code?
<?php
$x = 0;
if ($x++)
print “hi”;
else
print “how are u”;
?>
What will be the output of the following PHP code?
<?php
$x;
if ($x == 0)
print “hi” ;
else
print “how are u”;
print “hello”
?>
What will be the output of the following PHP code?
<?php
$a = “”;
if ($a)
print “all”;
if ______
else
print “some”;
?>
What will be the output of the following PHP code?
<?php
$x = 10;
$y = 20;
if ($x > $y + $y != 3)
print “hi” ;
else
print “how are u”;
?>
Define Conditional Statements in PHP.
List out Conditional Statements in PHP.
Write the features Conditional Statements in PHP.
Differentiate Switch and if else statement.
Explain the Function of Conditional Statements in PHP.