As languages go, PHP has more syntactic sugar than some. Esoteric constructs like list(…) are all over the place, making developers’ jobs easier, but tripping up beginners at the same time.
A particularly useful construct is the foreach loop, which provides a quick way to loop through an array (or, as of PHP5, an object):
$arr = [...]