一、安装PHP7
1、下载PHP7的源代码,解压缩至/var/php目录下,然后进入/php目录。
2、运行如下命令:
`./configure --prefix=/usr/local/php --enable-fpm --with-fpm-systemd --with-zlib --with-libxml --enable-bcmath --with-bz2 --enable-calendar --with-curl --enable-exif --with-pcre-dir --with-png-dir --enable-gd-native-ttf --with-jpeg-dir --with-freetype-dir --with-gettext --with-gmp --with-gd --enable-intl --with-ldap --with-ldap-sasl --with-mcrypt --with-mysqli --enable-mbstring --with-openssl --enable-zip`
3、运行如下命令:
`make`
4、运行如下命令:
`make install`
5、检查是否安装成功:
`/usr/local/php/bin/php -v`
二、安装MySQL扩展
1、安装MySQL的C库和开发文件
`yum install mysql mysql-devel -y`
2、下载MySQL扩展源码(版本号根据你的MySQL版本选择)
`wget https://pecl.php.net/get/mysql-1.0.0.tgz`
3、解压扩展源码至/ext目录下
`tar -zxvf mysql-1.0.0.tgz -C /var/php-7.1.0/ext/`
4、编译MySQL扩展并进行安装
`/usr/local/php/bin/phpize`
`./configure --with-php-config=/usr/local/php/bin/php-config --with-mysqli=/usr/bin/mysql_config`
`make && make install`
5、添加MySQL扩展的配置
在php.ini中添加以下内容:
`extension=mysql.so`
6、重启php-fpm并检查是否安装成功
`systemctl restart php-fpm`
`php -m |grep mysql`
如果输出“mysql”,则代表安装成功。
三、结束语
以上就是在PHP7中安装MySQL扩展的详细步骤。通过以上步骤,你能够成功地在PHP7中安装MySQL扩展,进而能够更加便捷地操作MySQL数据。