TAILIEUCHUNG - PHP & MySQL for Dummies- P5

Tham khảo tài liệu 'php & mysql for dummies- p5', công nghệ thông tin, cơ sở dữ liệu phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Chapter 7 PHP Building Blocks for Programs 181 previous arrayname Moves the pointer to the value before the current pointer location end arrayname Moves the pointer to the last value in the array reset arrayname Moves the pointer to the first value in the array The following statements manually walk through an array containing state capitals value current capitals echo value br value next capitals echo value br value next capitals echo value br Unless you moved the pointer previously the pointer is located at the first element when you start walking through the array. If you think that the array pointer may have been moved earlier in the script or if your output from the array seems to start somewhere in the middle use the reset statement before you start walking as follows reset capitals When using this method to walk through an array you need an assignment statement and an echo statement for every value in the array for each of the 50 states. The output is a list of all the state capitals. This method gives you flexibility. You can move through the array in any manner not just one value at a time. You can move backwards go directly to the end skip every other value by using two next statements in a row or whatever method is useful. However if you want to go through the array from beginning to end one value at a time PHP provides foreach which does exactly what you need much more efficiently. foreach is described in the next section. Using foreach to Walk through an array foreach walks through the array one value at a time. The current key and value of the array can be used in the block of statements each time the block executes. The general format is foreach arrayname as keyname valuename block of statements Please purchase PDF Split-Merge on to remove this watermark. 182 Part III PHP_ Fill in the following information arrayname The name of the array that you re walking through. keyname The name .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.