Using the array_push () Function : Array Function « Data Structure « PHP

PHP
1. Chart
2. Class
3. Components
4. Cookie Session
5. Data Structure
6. Design Patterns
7. Development
8. Email
9. File Directory
10. Form
11. Functions
12. Graphics Image
13. HTML
14. Language Basics
15. Login Authentication
16. Math
17. MySQL Database
18. Network
19. String
20. Web Services SOAP WSDL
21. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
PHP » 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";
  }
  ?>
           
       
Related examples in the same category
1. array_combine: Creates an array by using one array for keys and another for its values
2. array_key_exists
3. array_keys: Return all the keys of an array
4. array_diff_assoc: Array difference for associate array
5. array_flip: Exchanges all keys with their associated values in an array
6. array_values: Return all the values of an array
7. Using the array_unique () Function
8. Array array_chunk
9. Array shuffle
10. array_unshift
11. Using the array_intersect () Function
12. Using the array_diff () Function
13. array_merge_recursive: Merge two or more arrays recursively
14. Using the array_merge () Function
15. array_rand: Pick one or more random entries out of an array
16. array_search: Searches the array for a given value and returns the corresponding key if successful
17. Array count value
18. array_reverse: Return an array with elements in reverse order
19. array_pop: Pop the element off the end of array
20. array_push: Push one or more elements onto the end of array
21. array_pad: Pad array to the specified length with a value
22. count() function can also be used to access certain elements in the array
23. The count() Function
24. Using_the array_shift () Function
25. array_splice: Remove a portion of the array and replace it with something else
26. Using the array_slice () Function
27. current: Return the current element in an array
28. end: Set the internal pointer of an array to its last element
29. in_array: Checks if a value exists in an array
30. array_multisort: Sort multiple or multi-dimensional arrays
31. array_sum: Calculate the sum of values in an array
32. next: Advance the internal array pointer of an array
w___w__w_.___j_av__a___2__s.c_om__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.