Laravel框架学习笔记(一)环境搭建_PHP
Laravel
为什么选择laravel框架,是因为laravel框架目前是Php最流行的框架,深入研究后发现和asp.net mvc框架在功能上基本上是伯仲之间。只是各自的实现方法不同。
php在windows下的开发环境搭建
1.下载php地址http://windows.php.net/download/注意相关版本,我的服务器用的iis7.5 32 系统
VC11 x86 Non Thread Safe
解压之后放到相应的目录,配置php.ini文件,这里注意里面的dll启用的相关配置,这个网上有也不多说了。
2.iis 配置
我用的fastcgi 部署的,需要下载phpmanager https://phpmanager.codeplex.com/
安装完phpmanager 点击iis站点会出现phpmanager的图标
点开之后会出现下面界面,相关设置功能也比较简单,需要注意的是php extensions ,这个和上面php.ini 中的dll启用是一致的。
配置在iis fastcgi模式下 需要启用 php_wincache.dll.记得启用这个。
3.下载laravel 框架,这里需要下载一个composer 一个类似与npm的一个php工具。
安装时需要选择php的版本。如果需要更改php版本,重新安装就可以了
将laravel压缩包解压到laravel文件夹,在laravel文件夹中shfit+右键打开命令窗口
输入 compser intsall 会自动下载相关的依赖组件到vendor文件夹中
4.mysql的安装
mysql安装这里不详细叙述了,基本上没有太大的问题。
后面可能会碰到一个laravel 的Eloquent ORM 建模报错的问题,
需要把mysql 中的
# Set the SQL mode to strict
#sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
修改成
sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
也是网上找到解决方案,如果没有问题最好。
5.所有组件下载完之后开始配置iis php站点
和.net站点一样配置,注意站点的根目录不是laravel文件夹,而是下面的public文件夹。
配置一下host文件和网站的域名。
配置完成,点开phpmanager 中的check phpinfo();查看安装
程序池不需要更改,2.0的集成模式就可以了,
6.这时基本上就完成所有组件的安装。
访问上一步设置的网站域名。就可以看到laravel欢迎页。
这里还有一个特别要注意的地方,由于laravel生成的url也是不带后缀的,会出现404的错误,
需要安装IIS Url Rewrite 组件
安装完成之后
进入rewrite 界面点击右侧导入规则
然后选择public 文件下的.htaccess文件
导入完之后应用规则就行了。
以上步骤基本上就搭建完laravel在window iis中运行环境

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Laravel - Artisan Commands - Laravel 5.7 comes with new way of treating and testing new commands. It includes a new feature of testing artisan commands and the demonstration is mentioned below ?

The lightweight PHP framework improves application performance through small size and low resource consumption. Its features include: small size, fast startup, low memory usage, improved response speed and throughput, and reduced resource consumption. Practical case: SlimFramework creates REST API, only 500KB, high responsiveness and high throughput

For beginners, CodeIgniter has a gentler learning curve and fewer features, but covers basic needs. Laravel offers a wider feature set but has a slightly steeper learning curve. In terms of performance, both Laravel and CodeIgniter perform well. Laravel has more extensive documentation and active community support, while CodeIgniter is simpler, lightweight, and has strong security features. In the practical case of building a blogging application, Laravel's EloquentORM simplifies data manipulation, while CodeIgniter requires more manual configuration.

The learning curve of a PHP framework depends on language proficiency, framework complexity, documentation quality, and community support. The learning curve of PHP frameworks is higher when compared to Python frameworks and lower when compared to Ruby frameworks. Compared to Java frameworks, PHP frameworks have a moderate learning curve but a shorter time to get started.

Laravel - Facades - Facades provide a static interface to classes that are available in the application's service container. Laravel facades serve as static proxies to underlying classes in the service container, providing the benefit of a terse, exp

Laravel - Dump Server - Laravel dump server comes with the version of Laravel 5.7. The previous versions do not include any dump server. Dump server will be a development dependency in laravel/laravel composer file.

Laravel - Pagination Customizations - Laravel includes a feature of pagination which helps a user or a developer to include a pagination feature. Laravel paginator is integrated with the query builder and Eloquent ORM. The paginate method automatical

Laravel - Sending Email - Laravel uses free feature-rich library SwiftMailer to send emails. Using the library function, we can easily send emails without too many hassles. The e-mail templates are loaded in the same way as views, which means you can
