PHP array adding or pushing elements or parametersWe can add element ( parameters ) to an array at the end. We can also add a
set of elements to the array. Any time we can check the number of elements in an
array by using array count command.
We will first create an array like this
$stack = array (1, 2);
array_push ($stack,3,4,5,6); // we are adding four more elements to the array
echo count($stack);
// displaying total number of elements inside the array , that is 6 here
|