Source Code:
(back to article)
<?php $array = []; // Add a new element to the array $array[] = 'apple'; // Add another element to the array $array[] = 'banana'; // Add a third element to the array $array[] = 'orange'; print_r($array);
Result:
Report an issue