php array append


 

php array append

This section demonstrates the use of the append function of the php array

This section demonstrates the use of the append function of the php array

  • append function is used to add the element in the last position of the array
  • It adds the element to the array created by the ArrayObject class


Example of PHP Array Append Function

<?php

$ar1=new ArrayObject(array("aaa","bbb","ccc"));

foreach ($ar1 as $a)

echo $a." ";

$ar1->append("ddd");

echo "<br>after appending <br> ";

foreach ($ar1 as $a)

echo $a." ";

?>

Ads