下面的PHP代码分别对变量$a和$b进行循环累加
/**
* PHP for循环语句使用范例
*
* @param
* @arrange 512-笔记网: www.512Pic.com
**/
$a = 0;
$b = 0;
for( $i=0; $i<5; $i++ )
{
$a += 10;
$b += 5;
}
echo ("At the end of the loop a=$a and b=$b" );
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
输出结果
At the end of the loop a=50 and b=25
原文链接:https://www.f2er.com/php/528271.html