Skip to content

Instantly share code, notes, and snippets.

@waltspence
Forked from theodorosploumis/install_php.sh
Created March 26, 2018 11:32
Show Gist options
  • Save waltspence/cd91e961c1b4c9be5c371268cd7a96b0 to your computer and use it in GitHub Desktop.
Save waltspence/cd91e961c1b4c9be5c371268cd7a96b0 to your computer and use it in GitHub Desktop.
Install php7 with useful extension on Ubuntu xenial 16.10
sudo apt-get purge php5-common -y
#sudo apt-get install php7.0 php7.0-fpm php7.0-mysql -y
sudo apt-get install -y \
php \
libapache2-mod-php \
php-fpm \
php-mysql \
php-memcached \
php-pear \
php-xml \
php-mbstring \
php-xdebug \
php-intl \
php-curl \
php-gd \
php-zip \
php-json \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment