PHP基础(3)

目录

一、逻辑判断语句

if 语句

if...else 语句

elseif 语句

switch 语句

ternary operator (三元运算符)

二、循环语句



一、逻辑判断语句

在 PHP 中,逻辑判断语句用于判断某个条件是否成立,然后根据条件的真假执行相应的代码块。以下是常用的逻辑判断语句:

if 语句

  1. if 语句用于判断某个条件是否成立,如果条件成立,则执行 if 代码块中的代码。
if (condition) {
  // code to be executed if condition is true
}

if...else 语句

  1. if...else 语句用于判断某个条件是否成立,如果条件成立,则执行 if 代码块中的代码,否则执行 else 代码块中的代码。
if (condition) {
  // code to be executed if condition is true
} else {
  // code to be executed if condition is false
}

elseif 语句

  1. elseif 语句用于在 if...else 语句中添加多个条件判断,如果前面的条件不成立,则执行 elseif 代码块中的代码,否则执行 else 代码块中的代码。
if (condition1) {
  // code to be executed if condition1 is true
} elseif (condition2) {
  // code to be executed if condition2 is true
} else {
  // code to be executed if both condition1 and condition2 are false
}

switch 语句

  1. switch 语句用于判断某个条件是否与多个值中的任何一个匹配,如果匹配成功,则执行对应的代码块。
switch (variable) {
  case value1:
    // code to be executed if variable matches value1
    break;
  case value2:
    // code to be executed if variable matches value2
    break;
  ...
  default:
    // code to be executed if variable does not match any value
}

ternary operator (三元运算符)

  1. ternary operator 用于简单的条件判断,如果条件成立,则返回第一个值,否则返回第二个值。
variable = (condition) ? value1 : value2;

其中,condition 是要判断的条件,如果 condition 为 true,则将变量 variable 赋值为 value1,否则赋值为 value2。

二、循环语句

在PHP中,循环语句用于反复执行一组代码,直到某个条件满足为止。以下是常用的循环语句:

for循环

  1. for循环:用于已知循环次数的情况下进行循环,语法如下:
for (初始化条件; 循环条件; 循环后操作) {
  // 循环体中的代码
}

while循环

  1. while循环:用于未知循环次数的情况下进行循环,语法如下:
while (循环条件) {
  // 循环体中的代码
}

do-while循环

  1. do-while循环:与while循环类似,但它会先执行一次循环体再判断循环条件,语法如下:
do {
  // 循环体中的代码
} while (循环条件);

foreach循环

  1. foreach循环:用于遍历数组或对象,语法如下:
foreach ($array_or_object as $value) {
  // 循环体中的代码
}

其中,$array_or_object 是需要遍历的数组或对象,$value 是每次循环中取出的元素值。

在循环语句中,可以使用breakcontinue控制循环的执行流程。break用于结束整个循环,continue用于跳过当前循环体中的代码,进入下一次循环。

你可能感兴趣的:(php,开发语言)