創(chuàng)建Laravel項(xiàng)目??
composer create-project laravel/laravel firstLaravel
啟動(dòng)項(xiàng)目
方法1
php -S localhost:8888 -t public
方法2
php artisan serve
在創(chuàng)建項(xiàng)目時(shí)遇到problem:
Your requirements could not be resolved to an installable set of packages.
Problem 1 - laravel/framework v5.6.9 requires ext-mbstring * -> the requested PHP extension mbstring is missing from your system.
Problem 1 - phpunit/phpunit 4.8.9 requires ext-dom * -> the requested PHP extension dom is missing from your system.
……
解決辦法:
安裝mbstring和dom擴(kuò)展包即可:
sudo apt-get install php-mbstring
sudo apt-get install php-xml