Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

Michael Caley
Michael Caley
5,376 Points

Why would we use array_walk instead of foreach?

Please can you give me an example of when to use each one and the difference.

1 Answer

Samy Basset
Samy Basset
11,862 Points

Hey Micheal,

With a foreach loop we can loop trough an array(inside the loop) e.g. :

$arr = [1, 2, 3, 4];

foreach($arr as $num) {
  echo $num . '<br>';
}

and with the array_walk function you can loop trough the array with a function like this:

$arr = ['1', 2, 3, 4];


function foo($value, $key) {
  echo 'This is the ' . $key . ' and this is the ' . $value . '<br>';
}

array_walk($arr, 'foo');

As you can see, the first parameter for the array_walk function is the name of the array. The second parameter is the name of the function in quotes.

I hope this helps you.

Samy.