Home  >  Article  >  Backend Development  >  Flow control statement if/switch

Flow control statement if/switch

WBOY
WBOYOriginal
2016-07-30 13:29:571049browse

if(0) {

echo "true";

} else {

echo "false";

}

?>

output result :false

if(1) {

echo "true";

} else {

echo "false";

}

?>

output result : True


//$a is 6 six, 7 seven, 8 eight, null none

//$a=7; Result: seven

//$ a=5; Result: None

switch($a) {

case 6:

echo "6";

break; //Jump out of the current switch

case 7:

echo "seven";

break;

case 8:

echo "eight";

break;

default:

echo "None";

}

?>

When nothing is entered, the result is: None


Copyright Statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.

The above introduces the process control statement if/switch, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn