Source Code:
(back to article)
<?php // Create an empty array $emptyArray = []; // Push elements to the array array_push($emptyArray, "geeks", "for", "geeks"); // Display array elements print_r($emptyArray); ?>
Result:
Report an issue