How to Loop Through an Array using a foreach Loop in PHP? Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Given an array (indexed or associative), the task is to loop through the array using foreach loop. The foreach loop iterates through each array element and performs the operations. PHP foreach LoopThe foreach loop iterates over each key/value pair in an array. This loop is mainly useful for iterating through associative arrays where you need both the key and the value. The foreach loop iterates over an array of elements, the execution is simplified and finishes the loop in less time comparatively. The foreach loop works for both indexed and associative arrays. Example 1: In this example, we will use foreach loop to iterate over an indexed array. PHP <?php // Indexed array $arr = array(10, 20, 30, 40, 50); foreach ($arr as $element) { echo $element . " "; } ?> Output10 20 30 40 50 Example 2: In this example, we will use foreach loop to iterate over an associative array. PHP <?php // Associative array $student_marks = array( "Maths" => 95, "Physics" => 90, "Chemistry" => 96, "English" => 93, "Computer" => 98 ); foreach ($student_marks as $key => $value) { echo "$key => $value\n"; } ?> OutputMaths => 95 Physics => 90 Chemistry => 96 English => 93 Computer => 98 Create Quiz Comment B blalverma92 Follow 0 Improve B blalverma92 Follow 0 Improve Article Tags : PHP PHP-Questions Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like