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

Seth Warner
Seth Warner
5,348 Points

so the one thing I'd like to confirm is the following.. if(is_array($cat)) //is saying if $cat is an array

then pass then pass whats inside the if {} not else...right? So it is literally saying pass it as true if $cat is an array..which we make it an array down below.

1 Answer

Jacob Tollette
Jacob Tollette
27,884 Points

Yes. If $cat is an array, the conditional statement will evaluate to "true" which will execute the code in the statement. You can then do whatever you like with the array and return the result.