PHP 中提供了以下循环语句:while:条件为 true 时重复执行代码块。do-while:先执行代码块,再检查条件是否为 true,若为真则继续执行循环。for:初始化变量、检查条件、执行代码块,然后增量变量。foreach(数组):循环遍历数组中的元素,并提供键和值。foreach(对象):循环遍历对象中的属性,并提供属性名和值。
PHP 中的循环语句
PHP 中提供了多种循环语句,用于在满足特定条件时重复执行代码块。这些循环语句包括:
while 循环
while (condition)
do-while 循环
do {...} while (condition);
for 循环
for (initialization; condition; increment)
foreach 循环
foreach ($array as $key => $value)
foreach 循环(对象)
foreach ($object as $property => $value)
break 语句
continue 语句
示例:
<code class="php">// while 循环 $i = 0; while ($i < 10) { echo $i . "\n"; $i++; } // for 循环 for ($i = 0; $i < 10; $i++) { echo $i . "\n"; } // foreach 循环(数组) $array = ['foo', 'bar', 'baz']; foreach ($array as $item) { echo $item . "\n"; }</code>
以上是php中的循环语句有哪些的详细内容。更多信息请关注PHP中文网其他相关文章!