Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

จะแสดงค่าอาร์เรย์ด้วยคำสั่ง do while หรือ for ใน PHP ของฉันได้อย่างไร


ต่อไปนี้เป็นรูปแบบการแสดงค่าอาร์เรย์

do{
   //statement1
   //statement2
   .
   .
   .
   n
}
while(yourCondition);

รหัส PHP มีดังต่อไปนี้ -

ตัวอย่าง

<!DOCTYPE html>
<html>
<body>
<?php
   $values=array('John','David','Mike','Sam','Carol');
   $i=0;
   $len=count($values);
   do{
      echo $values[$i]," ";
      $i++;
   }
   while($i<$len)
?>
</body>
</html>

ผลลัพธ์

John David Mike Sam Carol