sh php7安装。剂量不起作用这个脚本!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh php7安装。剂量不起作用这个脚本!相关的知识,希望对你有一定的参考价值。
#!/bin/bash
set -x
set -e
if [ ! -x "`which php`" ]; then
if [ ! -e ./php-7.0.6 ]; then
wget -O "php-7.0.6.tar.gz" http://jp2.php.net/get/php-7.0.6.tar.gz/from/this/mirror && \
tar xfvz ./php-7.0.6.tar.gz
fi
cd php-7.0.6
SOURCE_DIR="echo $(cd $(dirname $0);pwd)"
BUILD_DIR=${SOURCE_DIR}/build
./configure \
--enable-mbstring \
--enable-zip \
--enable-bcmath \
--enable-pcntl \
--enable-ftp \
--enable-exif \
--enable-calendar \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-wddx \
--with-curl \
--with-mcrypt \
--with-iconv \
--with-gmp \
--with-pspell \
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-zlib-dir=/usr \
--with-xpm-dir=/usr \
--with-freetype-dir=/usr \
--enable-gd-native-ttf \
--enable-gd-jis-conv \
--with-openssl \
--with-pdo-mysql=/usr \
--with-gettext=/usr \
--with-zlib=/usr \
--with-bz2=/usr \
--with-recode=/usr \
--with-mysqli=/usr/bin/mysql_config \
--with-apxs2=/usr/bin/apxs2 \
--with-tsrm-pthreads
make test && \
make && \
sudo make install && \
cd .. && \
sudo rm -fr ./php-7.0.6 ./php-7.0.6.tar.gz
fi
以上是关于sh php7安装。剂量不起作用这个脚本!的主要内容,如果未能解决你的问题,请参考以下文章
当我获取 bash 脚本时,$0 不起作用
当 Kafka 从 Python 脚本启动时,kafka-server-stop.sh 不起作用
我的 sh 代码不起作用,需要帮助
虚拟机上的Linux系统安装了vmware tools为啥不起作用?
vrrp_script不起作用解决方案
php7 void 返回类型不起作用?