How to install openssl extension in php7: 1. Enter the openssl extension directory; 2. Run phpize; 3. Perform installation through "yum install openssl"; 4. Open php.ini and add "extension=openssl.so" ;5. Restart PHP.
The operating environment of this article: linux5.9.8 system, PHP7.0 version, DELL G3 computer
How to install php7 openssl extension?
php7 installation openssl extension method:
1. My source code is in /home/topsec/Documents/php-7.0.11, and the installation location is / usr/local/php7, php.ini is under /usr/local/php7/lib. If there is no php.ini, you need to rename the configuration file php.ini-development or php.ini-production in the source code to php.ini and place it under lib.
2. Enter the extension directory of openssl: /home/topsec/Documents/php-7.0.11/ext/openssl
3. Run phpize
/usr/local/php7/bin/phpize
4. Execute the installation
./configure --with-openssl --with-php-config=/usr/local/php7/bin/php-config make&&make install
5. During the process, libssl may not be found. Execute the following command and then execute it again. 4. Execute the installation
yum install openssl yum install openssl-devel
6. After executing the installation, you will be prompted to generate a .so file in a certain directory. The location where I generated it is /usr/local/php7/lib/php/ extensions/no-debug-non-zts-20151012/ Next
7. Open php.ini
vim /usr/local/php7/lib/php.ini
Add the following two sentences
extension_dir = "/usr/local/php7/lib/php/extensions/no-debug-non-zts-20151012/" extension=openssl.so
8. Just restart php.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to install openssl extension in php7. For more information, please follow other related articles on the PHP Chinese website!