php學習之旅 5 迴圈

2021-08-24 19:51:53 字數 977 閱讀 9077

php學習之旅 (5) 迴圈

1、語法

while - 迴圈直到特定條件滿足

do...while - 執行一次**,並且迴圈,直到滿足特定條件

for - 迴圈指定的次數

foreach - 對陣列中的每個元素都迴圈一遍

2、while

<?php

$i=1;

while($i<=5)

?>

輸出the number is 1

the number is 2

the number is 3

the number is 4

the number is 5

3、do...while

<?php

$i=1;

dowhile ($i<=5);

?>

輸出the number is 2

the number is 3

the number is 4

the number is 5

the number is 6

4、for

<?php

for ($i=1; $i<=5; $i++)

?>

輸出the number is 1

the number is 2

the number is 3

the number is 4

the number is 5

5、foreach

<?php

$x=array("one","two","three");

foreach ($x as $value)

?>

輸出one

分享我的文章[url=程式設計師賺錢之路探索[/url]

php和mysql學習之旅

對照著w3上的程式也漸漸知道這個操作流程是什麼,首先是建立通道連線資料庫和php,然後進行各種操作,最後關閉通道。而這中間的操作原理就是,封裝好的php函式執行各種命令,我要幹什麼,然後資料庫伺服器就擔任管家的身份,完成交代的各種任務,具體怎麼操作的不用管,只看結果。可以說建立通道是所有操作的基礎,...

php學習之旅 3 變數

php變數作用域,在 php 中,可以在指令碼的任意位置對變數進行宣告。變數的作用域指的是變數能夠被引用 使用的那部分指令碼。php有三種不同的變數作用域 local 區域性 函式內部宣告的變數擁有 local 作用域,只能在函式內部進行訪問。global 全域性 函式之外宣告的變數擁有 globa...

php學習之旅 4 陣列

php學習之旅 4 陣列 1 陣列種類 數值索引陣列 具有數值索引的陣列 多維陣列 包含乙個或多個陣列的陣列 2 數值索引陣列 第一種初始化方法 cars array saab volvo bmw toyota 第二種初始化方法 cars 0 saab cars 1 volvo cars 2 bmw...