When I try to install Laravel in Ubuntu that information comes out, I have entered the following command to perform the installation:
sudo composer create-project --prefer-dist laravel/laravel
EYE: I have PHP 7.1 installed.
When I try to install Laravel in Ubuntu that information comes out, I have entered the following command to perform the installation:
sudo composer create-project --prefer-dist laravel/laravel
EYE: I have PHP 7.1 installed.
Try reinstalling the extension
php-mbstring
,sudo apt-get install php-mbstring
Then you disable it and enable it again using
phpenmod/phpdismod
sudo phpdismod mbstring # disable mbstring extension sudo phpenmod mbstring # enable mbstring extension again
In case you are using windows, which I do not recommend, you should remove the enable this extension in the configuration file
.ini
I hope I can help,