Files
tldr/pages.zh/common/php-artisan.md

20 lines
442 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# php artisan
> Laravel的Artisan命令行界面。
> 更多信息:<https://laravel.com/docs/artisan>。
- 启动当前Laravel应用的PHP内置Web服务器
`php artisan serve`
- 启动一个交互式PHP命令行界面
`php artisan tinker`
- 生成一个新的Eloquent模型类包括迁移、工厂和资源控制器
`php artisan make:model {{ModelName}} --all`
- 显示所有可用命令的列表:
`php artisan help`