Tools, FAQ, Tutorials:
Looping through an Array in PHP
How to Loop through an Array in PHP?
✍: FYIcenter.com
The best way to loop through an array is to use the "foreach" statement. There are two forms of "foreach" statements:
Here is a PHP script on how to use "foreach" on an array:
<?php $array = array("Zero"=>"PHP", "One"=>"Perl", "Two"=>"Java"); $array["3"] = "C+"; $array[""] = "Basic"; $array[] = "Pascal"; $array[] = "FORTRAN"; print("Loop on value only:\n"); foreach ($array as $value) { print("$value, "); } print("\n\n"); print("Loop on key and value:\n"); foreach ($array as $key=>$value) { print("[$key] => $value\n"); } ?>
This script will print:
Loop on value only: PHP, Perl, Java, C+, Basic, Pascal, FORTRAN, Loop on key and value: [Zero] => PHP [One] => Perl [Two] => Java [3] => C+ [] => Basic [4] => Pascal [5] => FORTRAN
⇒ Order of Array Values in PHP
2017-02-03, 1943🔥, 0💬
Popular Posts:
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
Why I am getting "The Windows SDK version 8.1 was not found" error, when building my C++ application...
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...