Blogger Information
Blog 3
fans 0
comment 0
visits 1611
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
创建一组数组,用foreach和其替代语法在html中输出数组内容及`GET`和`POST`二种请求类型——2019年7月22日
林木的博客
Original
917 people have browsed it

一、今天学习php中的基本知识:(一)创建一组数组,用foreach和其替代语法在html中输出数组内容。

(二)http请求类型:最常用的就是`GET`和`POST`二种请求类型。内容如下:

(一)、创建一个数组,用"$"+数组名。使用foreach语法在html中输出数组内容;数组可使用foreach()语句输出,语句格式是foreach( $array as $key=>$value) {...}。

实例

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>数组foreach输出</title>
</head>
<body>

</body>
</html>

<?php $foot = ['海底捞', '牛扒','麻辣烫','喜茶']; ?>

<!--<!--<!--对于数组,循环遍历更方便-->-->-->
<?php
 //数组可使用foreach()语句输出
// foreach( $array as $key=>$value) {...}
foreach ($foot as $key=>$value) {
 echo $key+1 . ': ' . $value . '<br>';
}
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


666.png 


(二)、使用的一个数组,使用foreach的替代语法,在html中输出数组内容;

(1)使用 php 输出 html。

实例

<!--<!--使用 php 输出 html-->-->
<?php $foot = ['海底捞', '牛扒','麻辣烫','喜茶'];?>
<?php
echo '<ul>';
foreach ($foot as $key=>$value) {
    echo '<li><a href="">' . ($key+1) . ': ' . $value . '</a></li>';
}
echo '</ul>';
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


22.png 

 

(2)使用 php + html 混编。

实例

<!--<!--使用 php + html 混编, -->-->
<ul>
    <?php foreach ($foot as $key=>$value) { ?>
        <li><a href=""><?php echo ($key+1) . ':' . $value; ?></a></li>
    <?php } ?>
</ul>

运行实例 »

点击 "运行实例" 按钮查看在线实例


 

(3)使用foreach替代语法,干掉大括号, 将大括号用冒号代替

实例

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>数组foreach输出</title>
</head>
<body>

</body>
</html>

//创建一组数组,用foreach在html中输出数组内容;
<?php $foot = ['海底捞', '牛扒','麻辣烫','喜茶'];?>

//使用php循环结构的替代语法,干掉大括号, 将大括号用冒号代替
    <?php foreach ($foot as $foot): ?>
 <li><a href=""><?php echo $foot; ?></a></li>
 <?php endforeach;?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

 555.png

 

 

 


Correction status:qualified

Teacher's comments:数据的遍历, 有很多种方式, 最常用的就是foreach
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post