From 8747298b8cc0cb934823e8d30433924c105f3622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E7=91=9E=E9=98=B3?= <2982337961@qq.com> Date: Sun, 15 May 2022 23:47:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...hp\350\277\220\347\256\227\347\254\246.md" | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 "\346\235\216\347\221\236\351\230\263/20220511-php\350\277\220\347\256\227\347\254\246.md" diff --git "a/\346\235\216\347\221\236\351\230\263/20220511-php\350\277\220\347\256\227\347\254\246.md" "b/\346\235\216\347\221\236\351\230\263/20220511-php\350\277\220\347\256\227\347\254\246.md" new file mode 100644 index 0000000..bc68b3d --- /dev/null +++ "b/\346\235\216\347\221\236\351\230\263/20220511-php\350\277\220\347\256\227\347\254\246.md" @@ -0,0 +1,43 @@ +# 笔记: + +### 运算符:赋值,比较,逻辑,三元,子增减 + +### 分支结构:if else if 判断范围和精准之switch精准值 + +### 循环while do while for (){} + +### break 结束整个结构、continue 跳过本次,继续下一次 + +```php +=1;$i--){ + echo $i; +} +$i=10; +while ($i>=1){ + echo $i--; +} +``` + -- Gitee