Push one or more elements onto the end of array : array_push « Data Structure « PHP
- PHP
- Data Structure
- array_push
Push one or more elements onto the end of array
<?
$stack = array (1, 2);
array_push($stack, "+", 3);
?>
Related examples in the same category