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 Build a Basic PHP Website (2018) Listing and Sorting Inventory Items Random Fun with Arrays

Ryan Schmelter
Ryan Schmelter
9,710 Points

Loop returns one fewer items than the number parameter in array_rand

$random = array_rand($catalog, 4); returns 3 items.

If I change 4 to 5, it dispalys 4 items - Always one less than the number specified. Any ideas of what's going on?

Thank you!

1 Answer

How are you determining this? In the video she uses var_dump to show

$random = array_rand($catalog, 4)

returns 4 items

var_dump($random);

returns for example

array(4) { [0]=> int(104) [1]=> int(201) [2]=> int(203) [3]=> int(302) }