Add elements to the end of an array : Array Element « Data Structure « PHP
- PHP
- Data Structure
- Array Element
Add elements to the end of an array
<?
$myarray = array('one', 2, 'three');
$myarray[] = 'the fourth element';
echo($myarray[3]);
?>
Related examples in the same category