php7 install openssl extension

php中世界最好的语言
Release: 2023-03-22 07:44:02
Original
3130 people have browsed it

This time I will bring you php7Installationopenssl extension, what are the precautions for installing openssl extension in php7, the following is a practical case, let's come together take a look.

1. My source code is in /home/topsec/Documents/php-7.0.11, the installation location is in /usr/local/php7, and php.ini is in /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 put 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
Copy after login

4. Execute Installation

./configure --with-openssl --with-php-config=/usr/local/php7/bin/php-config 
make&&make install
Copy after login

5. During the process, libssl may not be found. Execute the following command and then execute it again. 4. Execute installation

yum install openssl 
yum install openssl-devel
Copy after login

6. After executing the installation, you will be prompted to generate a directory in a certain directory. .so file, the location I generated is under /usr/local/php7/lib/php/extensions/no-debug-non-zts-20151012/

7. Open php.ini

vim /usr/local/php7/lib/php.ini
Copy after login

Add the following two sentences

extension_dir = "/usr/local/php7/lib/php/extensions/no-debug-non-zts-20151012/" 
extension=openssl.so
Copy after login

8. Restart php.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to use the PHP generator

##phpStudy2018 installation tutorial

The above is the detailed content of php7 install openssl extension. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template