Blogger Information
Blog 23
fans 1
comment 0
visits 16938
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
6.4日课件
布衣大汉的博客
Original
889 people have browsed it

# course1: 前端页面与内容分析


## 1. 目录结构


* `static`: 公共静态资源,如css,images,js

* `lesson1`: 首页制作与页面拆分

* `lesson2`: 分离页面分共部分


----------------------------------------


## 2. lesson1: 首页制作与页面拆分


### 2.1 知识点

  * 数组:

    * 索引数组: 键名是默认递增整数索引

    * 关联数组: 键名是字符串

  * 数组成员的访问: 按键名访问

  * 数组的遍历: foreach()

  * 二维数组的定义与访问


### 2.2 目录结构


* 首页: `index.php`,所有栏目内容的聚合

* `gc.php`: [栏目页] 国产原创

* `om.php`: [栏目页] 欧美猛片

* `rh.php`: [栏目页] 日韩推荐

* `detail.php`: [详情页] 暂忽略


----------------------------------------


## 3. lesson2: 分离页面分共部分


### 3.1 知识点


* 页面公共部分分离的优点

* 外部文件加载语句:

  * `include`: 加载失败,不会终止当前脚本,只会发出警告

  * `require`: 加载失败, 终止当前脚本的执行,是致命错误

  * `include_once / require_once `: 仅允许加载一次


### 3.2 目录结构


* `inc`: 页面的公共部分

  * `config.php`: 网站配置与页面变量

  * `header.php`: 公共头部

  * `footer.php`: 公共底部

 

* `index.php`: 首页

* `gc.php`: [栏目页] 国产原创

* `om.php`: [栏目页] 欧美猛片

* `rh.php`: [栏目页] 日韩推荐

* `detail.php`: [详情页] 暂忽略


Correction status:Uncorrected

Teacher's comments:
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