for latest MacOS with brew, where Homebrew/PHP is deprecated:
brew install [email protected]
(change 7.2 to your version)
To enable SOAP support, configure PHP with --enable-soap.
for latest MacOS with brew, where Homebrew/PHP is deprecated:
brew install [email protected]
(change 7.2 to your version)
If you have not yet updated the OS and also the PHP version
for Ubuntu 14.04 LTS
sudo apt-get install php5.6-soap
sudo service apache2 restart
If you received a
E: Couldn't find any package by regex 'php7.1-soap'
when using docker php:apache image
try
apt-get install php-soap
instead
On PHP7.1 Ubuntu 16.04 LTS:
$ sudo apt-get install php7.1-soap
$ sudo service php7.1-fpm reload
If you're using official PHP packages shipped with CentOS or RedHat version 6 or 7:
# yum install php-soap
(Restart Apache/nginx too if appropriate.)
for Ubuntu 16.04 LTS
sudo apt-get install php7.0-soap
sudo systemctl restart apache2.service