Using the array_push () Function : Array Function : Data Structure PHP Source Code


PHP Source Code » Data Structure » Array Function »

 

Using the array_push () Function




 <?php
  $vocalists = array ("A""B""C");
  $musicians = array_push($vocalists, "D""E""F");

  echo "The total number of musicians are $musicians:""n";

  foreach ($vocalists as $val) {
    echo "$val""n";
  }
  ?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Data Structure
» Array Function