Tools, FAQ, Tutorials:
Retrieving All Values from an Array in PHP
How To Get All the Values Out of an Array in PHP?
✍: FYIcenter.com
Function array_values() returns a new array that contains all the values of a given array. Here is a PHP script on how to use array_values():
<?php $mixed = array(); $mixed["Zero"] = "PHP"; $mixed[1] = "Perl"; $mixed["Two"] = "Java"; $mixed["3"] = "C+"; $mixed[""] = "Basic"; $mixed[] = "Pascal"; $mixed[] = "FORTRAN"; $values = array_values($mixed); print("Values of the input array:\n"); print_r($values); ?>
This script will print:
Values of the input array: Array ( [0] => PHP [1] => Perl [2] => Java [3] => C+ [4] => Basic [5] => Pascal [6] => FORTRAN )
⇒ Sorting an Array by Keys in PHP
⇐ Retrieving All Keys from an Array in PHP
2017-01-21, 2302🔥, 0💬
Popular Posts:
How to start Visual Studio Command Prompt? I have Visual Studio 2017 Community version with Visual C...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
How to use "json-to-xml" Azure API Policy Statement? The "json-to-xml" Policy Statement allows you t...
How To Access a Global Variable inside a Function? in PHP? By default, global variables are not acce...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...