Array (PHP)

From Wiki @ Karl Jones dot com
Revision as of 10:03, 27 October 2015 by Karl Jones (Talk | contribs) (Iterations)

Jump to: navigation, search

This article describes arrays in PHP.

Description

...

Iterations

You can iterate through arrays in various ways.

Example using while():

<?php
    while (list($var, $val) = each($array)) {
        print "$var is $val\n";
    }
?>

See also

External links

Iteration: