การใช้ For Loops PHP (for,foreach) |
- for loops
for (init counter; test counter; increment counter) {
code to be executed;
}
ตัวอย่าง
ผลลัพธ์<?php
for ($start = 0; $start <= 20; $start++) {
echo "The number of start: $start <br>";
}
?>
The number of start: 0for ซ้อน for
The number of start: 1
The number of start: 2
The number of start: 3
The number of start: 4
The number of start: 5
The number of start: 6
The number of start: 7
The number of start: 8
The number of start: 9
The number of start: 10
The number of start: 11
The number of start: 12
The number of start: 13
The number of start: 14
The number of start: 15
The number of start: 16
The number of start: 17
The number of start: 18
The number of start: 19
The number of start: 20
<?php
for ($start = 1; $start <= 10; $start++) {
$dot='';
for($i=1;$i<=$start;$i++){
$dot .= '.';
}
echo "$dot</br>";
}
?>
ผลลัพธ์
.2. foreach
..
...
....
.....
......
.......
........
.........
..........
foreach จะนิยมใช้ในการดึงข้อมูลที่เป็น Array ออกมา ตัวอย่างด้านล่าง
Syntax
foreach ($array as $value) {ตัวอย่าง
code to be executed; }
<?phpผลลัพธ์
$gender = array("m", "f");
foreach ($gender as $value) {
echo "$value <br>";
}
?>
mอีกตัวอย่างการใช้ foreach ที่ข้อมูลใน Array มีลักษณะ Kay Value
f
ตัวอย่าง
<?phpผลลัพธ์
$gender = array("m"=>"Man", "f"=>"Female");
foreach ($gender as $key => $value) {
echo "$key -> $value<br>";
}
?>
m -> Man
f -> Female
ไม่มีความคิดเห็น :
แสดงความคิดเห็น