Answers for "How to use mbstring on Heroku (PHP)"

PHP
0

How to use mbstring on Heroku (PHP)

Create Composer file in your app folder

project_dir:~$> touch composer.json

# add these lines in your composer.json
{
  "require": {
    "ext-mbstring": "*"
  }
}

#save composer file
#And heroku will automatically add the mbstring extension 
#to your app on the next deploy.
Posted by: Guest on December-04-2020

Browse Popular Code Answers by Language