Copy the code The code is as follows:
/* Loop structure
* 1. while loop
* while (expression)
* {
* Loop body; // Repeatedly execute until the expression The formula is false
* }
* 2. do-while loop
* 3. for loop
*
* According to different loop conditions, there are two types of loops
*
* One: counting loop (generally use for)
* Another type: conditional loop (generally use while do-while)
*
*
*
*/
//Use of while
/*$num=0;
while($num<100)
{
echo "Output result{$num}";
$num++;
}*/
//while output table
echo '
'.$i.' | ';
The above introduces the loop structure implementation code of photoshop learning experience and PHP learning, including the content of photoshop learning experience. I hope it will be helpful to friends who are interested in PHP tutorials.