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 Introducing Functions PHP Function Arguments

Miguel Nunez
Miguel Nunez
3,266 Points

Simplifying Arrays?

Is it true that in simple terms an Array is like a variable that could hold multiple values?

2 Answers

Yes sure, array is kind of variable that can store multiple values. For example:

$food = array(
  'Apple',
  'Fish',
  'Ice cream'
);

And than you can retreave any of these variables easily.

Miguel Nunez
Miguel Nunez
3,266 Points

Thanks I wasn't sure if that was true what I said I was going based on my theories.

Miguel Nunez
Miguel Nunez
3,266 Points

Thanks I wasn't sure if that was true what I said I was going based on my theories.