A simple example of using foreach () to traverse a two-dimensional array in PHP _php tips

Source: Internet
Author: User

First type

Want to traverse the entire two-dimensional array with foreach ():

$team = Array (' lk ', ' OK '); 
$book = Array (' Linux server Configuration and Management ', $team); 

foreach ($book as $k => $val)//for $book each $value (AS) 
echo $k. ' => '. $val '; 

The output results are:

0=>linux Server Configuration and management
1=>array

Of course, I actually want all the specifics, not the output array ...

So you should use the following procedure to add a judgment statement:

$team = Array (' lk ', ' OK '); 
$book = Array (' Linux server Configuration and Management ', $team); 

foreach ($book as $k => $val)//means $book each $value (AS) 
if (Is_array ($val)) foreach ($val as $value) echo $va Lue. '; 

The output is:

0=>linux Server Configuration and management
Lk
Ok

echo "<br>"; 
echo " 
 

Above this PHP use foreach () traversal two-dimensional array of simple example is small series to share all the content, hope to give you a reference, also hope that we support cloud habitat community.

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.