$codes = ‘html>
数组遍历
h1{margin: 0px;color: red;background: #ccc;}
h3{margin: 0px;color: red;background: #ccc;}
h5{margin: 0px;color: red;background: #ccc;}
body{font-size: 24px;color: #ccc;}
数组遍历
‘;
echo ($codes);
/**
* 课程内容
* 1.数组分类
* 2.数组定义
* 3.数组遍历
*/
/**
* 一、数组分类
* 1.数组是由一组有序的值或键值对组成的数据结构
* 2.数组根据键名类型分为:索引数组 与 关联数组 二大类
* 3.索引数组:键名是元素的位置索引,默认从0开始,采用系统自动处理可以省略键名
* 4.关联数组:键名是自定义的字符串,类似于对象中的属性列表
*/
//索引数组: 采用字面量直接定义
//降龙十八掌,前六招,能接住这前六招,当今武林,恐怕不会超过五人,目前已经够用了
$arts = [‘亢龙有悔’, ‘飞龙在天’, ‘见龙在田’, ‘鸿渐于陆’, ‘潜龙勿用’, ‘突如其来’];
//关联数组: 采用字面量直接定义
$swordsman = [‘name’=>’郭靖’, ‘position’=>’金刀驸马’, ‘skill’=>’降龙十八掌&#