Using the code shown in Listing 3–7 and focusing on the for loop logic, PHP executes
the for loop in the following way:
1. Initialize $i to 0, start our loop at index 0, check the length of the array
using count(), increment $i by 1.
2. Once iteration 0 is complete, start at index 1, check the length of the
array using count(), increment $i by 1.
3. Once iteration 1 is complete, start at index 2, check the length of the
array using count(), increment $i by 1.
การใช้รหัสที่แสดงในรายการ 3 – 7 และเน้นตรรกะห่วง , PHP รัน
สำหรับวงในวิธีต่อไปนี้ :
1 ฉันเริ่มต้น $ 0 เริ่มห่วงของเราที่ดัชนี 0 ตรวจสอบความยาวของอาร์เรย์
ใช้ count() เพิ่มขึ้น , $ โดย 1 .
2 ถ้าซ้ำ 0 สมบูรณ์ เริ่มที่ดัชนี 1 , ตรวจสอบความยาวของอาร์เรย์ที่ใช้
count() เพิ่มขึ้น , $ โดย 1 .
3 เมื่อทำซ้ำ 1 เสร็จเริ่มต้นที่ราคา 2 , ตรวจสอบความยาวของอาร์เรย์ที่ใช้ count()
, ฉันเพิ่ม $ โดย 1
การแปล กรุณารอสักครู่..