How To Get All the Values Out of an Array

Q

How To Get All the Values Out of an Array? - PHP Script Tips - PHP Built-in Functions for Arrays

✍: FYIcenter.com

A

Function array_values() returns a new array that contains all the keys 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
)

2007-04-21, 4772👍, 0💬