Blogger Information
Blog 43
fans 0
comment 0
visits 30450
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Laravel的安装和了解
橙絮圆
Original
726 people have browsed it

Laravel的安装和了解

作业标题:0901作业
作业内容:1.安装laravel框架 ;2.对laravel框架结构进行了解


  1. 安装laravel框架
    安装成功
    2.对laravel框架结构进行了解
    aravel框架
    一、laravel简介
    laravel是一套优雅简介的PHP开发框架,受欢迎程度非常之高,功能强大,工具齐全;

二、简单介绍
1、laravel是基于mvc模式的php框架,m——模型层,v——视图层,c——控制器层;以下为laravel框架的目录文件,框出来的文件目录将在后续中用到:
2、什么是MVC的开发思想?
M 是 Model的简写,负责业务数据处理。
V 是 View的简写,负责显示数据和收集数据。
C 是Controller的简写,负责协调(调度)左右。

  app是应用的核心代码文件目录,以后的代码基本都在这里完成;
  app/Http/Controller目录是应用的控制器文件;
  routes.php是框架的路由文件,负责路由分配和映射;
  Http下的类文件,比如上面目录中的User.php、Menu.php文件是应用的模型文件;
  config目录是所有应用的配置文件目录;
  public是框架的入口文件及静态资源文件目录;
  resources/views则是应用的视图文件目录。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

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
Author's latest blog post