这篇文章主要为大家详细介绍了php 通过break语句终止php循环的功能实例,具有一定的参考价值,可以用来参考一下。
php循环一定次数后终止循环,通过break语句终止php循环的例子,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 循环一定次数后终止循环
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
$max_loop=5; //This is the desired value of Looping
$count = 0; //First we set the count to be zeo
echo "<h2> Here goes the values</h2>";
foreach($my_array as $key => $val) {
echo "The value of $key is $val<br/>"; //Print the value of the Array
$count++; //Increase the value of the count by 1
if($count==$max_loop) break; //Break the loop is count is equal to the max_loop
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/326-0.html
注:关于php 通过break语句终止php循环的功能实例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:break,循环
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。