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