source

Composer - 요청된 PHP 확장 mbstring이 시스템에 없습니다.

factcode 2022. 11. 15. 21:31
반응형

Composer - 요청된 PHP 확장 mbstring이 시스템에 없습니다.

최근에 Composer를 통해 패키지를 설치하려고 했지만 오류가 발생했습니다.the requested PHP extension mbstring is missing from your system.세미콜론을 제거했습니다.php.ini하지만 여전히 작동하지 않습니다.어떻게 해야 하나?

sudo apt-get install php-mbstring

# if your are using php 7.1
sudo apt-get install php7.1-mbstring

# if your are using php 7.2
sudo apt-get install php7.2-mbstring

# if your are using php 7.4
sudo apt-get install php7.4-mbstring
  1. 를 검색하다php.ini
  2. 지시를 확실히 하다extension_dir=C:\path\to\server\php\ext경로를 설정하고 조정합니다(PHP 확장 dir 설정).
  3. 지시를 확실히 하다extension=php_mbstring.dll설정(비색인)

이것이 동작하지 않고 php_mbstring.dll 파일이 없는 경우 이 스택의 PHP 설치가 단순히 중단됩니다.

php 7.1의 경우

sudo apt-get install php7.1-mbstring

건배!

PHPRC 변수를 설정하고 주석 없이zend_extension=php_opcache.dllphp.ini모두 잘 되고 있습니다.

언급URL : https://stackoverflow.com/questions/32488917/composer-the-requested-php-extension-mbstring-is-missing-from-your-system

반응형