PHP循环结构实例讲解
这篇文章主要介绍了PHP循环结构实例讲解,需要的朋友可以参考下
for循环语句
完整的金字塔
复制代码 代码如下:
//打印金字塔
$n=25;
for($i=1;$i //空格循环
for($k=1;$k echo ' ';
}
//字符循环
for($j=1;$j
if($i==1 || $i==$n){
echo '.';
}
else{
if($j==1 || $j==$i*2-1){
echo '.';
}else{
echo ' ';
}
}
}
/*
for($j=1;$j echo '.';
}*/
echo '
';
}
switch语句:
复制代码 代码如下:
/*$a="1";
switch ($a) {
case 1:
echo $a;
break;
default:
echo "错误";
break;
}
//自动转换字符串和数字
switch选择语句中遇到布尔值时的处理:
复制代码 代码如下:
$b=true;
switch($b){
case false:
echo "不匹配";
break;
//代表非false的值都可以为true-----自动转换类型
case "1":
echo "成功匹配";
break;
default:
echo "ko";
}
//1.default语句不论顺序都是最后执行,,如果没有匹配到其他的case,那么就执行default语句
//2.如果没有break语句,那么就会输出下一个case的结果,直到有break为止。
while循环和do..while循环:
复制代码 代码如下:
/*while循环
$i=0;
while($i echo "paxster
".$i;
$i++;
}
//do..while循环--------先执行再判断,至少执行一次
/*$do=0;
do{
echo '
Paxster';
$do=$do+1;
}while($do
while循环和switch选择语句的结合:
常量:
复制代码 代码如下:
//定义常量-----两种方法
define('TAX',200);
echo TAX;
const Tab=100;
echo Tab;
编写简易计算器:
step1:编写输入界面
复制代码 代码如下:

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
