What are some alternative syntax options for control structures in PHP when working with arrays?

When working with arrays in PHP, there are alternative syntax options for control structures that can make your code more readable and concise. One common alternative syntax is using the `foreach` loop to iterate over an array instead of using a traditional `for` loop. This can make your code more intuitive and easier to understand.

// Traditional for loop to iterate over an array
$numbers = [1, 2, 3, 4, 5];
for ($i = 0; $i < count($numbers); $i++) {
    echo $numbers[$i] . " ";
}

// Alternative foreach loop to iterate over an array
$numbers = [1, 2, 3, 4, 5];
foreach ($numbers as $number) {
    echo $number . " ";
}