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 PHP Functions PHP Internal Functions PHP Array Functions

need help about array_walk()

https://teamtreehouse.com/forum/arraywalknames-printinfo-question-regarding-value-key

in this question Petros Sordinas give an answer but i was confused on his code.

on his code he used print_info($value, $key); i need to know what is print_info here? if i was right its not a built in function. then what is it and how its work.

foreach ($names as $key => $value)
{
  print_info($value, $key);
}

1 Answer

In that previous link there is a function you have in the main post code block called that.

function print_info($value, $key){
  echo $key . " is a " . $value . ".<br>";

}

Thnx got it!