Cyclic traversal of a PHP one-dimensional array

Source: Internet
Author: User
You can use subscript variables in your program, which means that the whole array of these variables is the same as the data type of each variable. when each element in an array has only one subscript, the array is called a one-dimensional array.

A one-dimensional array is a single array of structures arranged in a simple sort structure, consisting of numbers. A one-dimensional array is the most basic array in a computer program. Two-dimensional and multidimensional arrays can be thought of as multiple overlays of one-dimensional arrays.

A simple example of a PHP loop one-dimensional array, first the string according to certain rules to convert into an array, and then traverse the output, is actually a very simple method, because a recently done a two-dimensional array structure diagram is a headache, so womb can't remember how to traverse the output. The simple example code is as follows:

foreach Traversal array

<?php  /* * Array Traversal  *   /$language = Array ("French", ' German ', ' Russian ', ' Chinese ', ' Hindi ', ' Quechu ');   foreach ($language as $key = + $value) {     echo $key. ' = '. $value. ' <br/> ';   } ?>

Traversal of associative arrays

<?php    /* * Associative array traversal    *    /$userList = Array (' UserName ' = ' Lilia ', ' Gender ' = ' female ', ' age ' = > ' Up ', ' School ' = ' Peking University ');    foreach ($userList as $key = + $value)    {     echo $key. ' = '. $value. ' <br/> ';    } ?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.