php和html混写,遍历出二维关联数组_PHP教程

WBOY
Libérer: 2016-07-12 09:04:53
original
1067 Les gens l'ont consulté

php和html混写,遍历出二维关联数组

<?php
    //下面是二维关联数组
    $arr_3 = array(array("id"=>2,"name"=>"lucy","age"=>26),
                   array("id"=>3,"name"=>"lili","age"=>27),
                   array("id"=>4,"name"=>"lisi","age"=>28),
                   );
 
?>
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
 
<table border="1px black solid" width="20%" cellpadding="0" cellspacing="0" align="center">
    <tr align="center" bgcolor="green">
        <th>编号</th>
        <th>姓名</th>
        <th>年龄</th>
    </tr>
    <!--二维关联数组的2次遍历-->
    <?php foreach ($arr_3 as $key=>$row) { ?> 
    <tr align="center">
        <?php if(is_array($row)){
            foreach ($row as $col) {
                    echo "<td align=&#39;center&#39;>".$col."</td>";
            }
        }else{
            echo "<td >".$key.&#39;:&#39;.$row."</td>";
        } ?>
    </tr> 
    <?php } ?> 
</table>
</body>
</html>
Copier après la connexion

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1071707.htmlTechArticlephp和html混写,遍历出二维关联数组 ?php //下面是二维关联数组 $arr_3 = array(array(id=2,name=lucy,age=26), array(id=3,name=lili,age=27), array(id=4,name=lisi,age=...
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!