Several methods of traversing associative array in PHP _php tutorial

Source: Internet
Author: User
In PHP, arrays are divided into two categories: numeric indexed arrays and associative arrays. Where the numeric index array is the same as the array in the C language, the subscript is for 0,1,2 ... Associative array subscripts may be of any type, similar to Hash,map in other languages.

Here are three ways to traverse associative arrays in PHP:

Foreach

 
  ' Good ',    ' swimming ' = ' very well ',    ' running '  = ' not good '); foreach ($sports as $key + $value) {
  echo $key. ":". $value. "
";}? >

Program Run Result:

Football:goodswimming:very Wellrunning:not Good

each

 
  ' Good ',    ' swimming ' = ' very well ', ' running ' and ' not  good '); and while ($elem = each ($sports)) {    echo $elem [' key ']. ":". $elem [' value ']. "
";}? >

Program Run Result:

Football:goodswimming:very Wellrunning:not Good

List & each

 
  ' Good ',    ' swimming ' = ' very well ', ' running ' and ' not  good '); and (List ($key, $value) = each ($sports) {    echo $key. ":" $value. "
";}? >

Program Run Result:

Football:goodswimming:very Wellrunning:not Good

http://www.bkjia.com/PHPjc/752443.html www.bkjia.com true http://www.bkjia.com/PHPjc/752443.html techarticle in PHP, arrays are divided into two categories: numeric indexed arrays and associative arrays. Where the numeric index array is the same as the array in the C language, the subscript is for 0,1,2 ... and the associative array subscript may be any ...

  • Related Article

    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.