使用命令"php artisan serve"运行Laravel有什么意义? [英] Whats the point of running Laravel with the command 'php artisan serve'?

查看:1107
本文介绍了使用命令"php artisan serve"运行Laravel有什么意义?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

相对于仅使用 Apache nginx 运行它,为什么我需要用php artisan serve运行Laravel应用程序呢?我知道在开发过程中,我们将使用artisan来启动该网站,并在将其部署到服务器后,使用Web服务器来加载该网站.

I dont seem to understand why we need to run a Laravel app with php artisan serve vs just running it with Apache or nginx. I know that under development, we use artisan to fire up the site and after deployment to a server, you use the webserver to load up the site.

首先在工匠手中运行该应用程序有什么用?

Whats the use of running the app in artisan in the first place?

推荐答案

serve命令只是

The serve command is just a shortcut for the PHP Built-in Webserver, something PHP has out of the box, so the point of using it is to start testing your application as fast as you could, you just need to install PHP, Composer and your application is up (if you don't need anything else, of course). But if you already have Nginx installed, there is no point at all, just use it.

在生产环境中使用内置Web服务器是不明智的.

It's not wise to use the Builtin Webserver in production.

这篇关于使用命令"php artisan serve"运行Laravel有什么意义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆