What are the best practices for creating and manipulating arrays in PHP, especially when dealing with multiple entries?

When dealing with multiple entries in PHP arrays, it is important to follow best practices to efficiently create and manipulate them. One way to handle multiple entries is by using loops to iterate through the array and perform operations on each entry. Additionally, using built-in array functions such as array_push() and array_merge() can help simplify the process of adding and combining entries in an array.

// Example of creating and manipulating arrays in PHP

// Creating an array with multiple entries
$fruits = ['apple', 'banana', 'orange'];

// Adding a new entry to the array
$fruits[] = 'kiwi';

// Looping through the array to perform operations on each entry
foreach ($fruits as $fruit) {
    echo $fruit . "\n";
}

// Combining two arrays
$moreFruits = ['grape', 'pineapple'];
$combinedFruits = array_merge($fruits, $moreFruits);

// Outputting the combined array
print_r($combinedFruits);