Home  >  Article  >  Backend Development  >  How to use ssl in php

How to use ssl in php

(*-*)浩
(*-*)浩Original
2019-09-27 11:15:383460browse

How to enable SSL in php? Method resources to enable SSL

How to use ssl in php

When accessing SSL-enabled resources, \"did you forget to" will appear enable it when you configured PHP\" error message, from the prompt we can see that the SSL module must not be configured in php.ini. (Recommended learning: PHP programming from entry to proficiency)

Open php.ini and find extension=php_openssl.dll, uncomment it.

The method to enable SSL in PHP is very simple. First find the php.ini file, remove the comment symbol ";" in front of extension=php_openssl.dll, and then restart apache to take effect!

Some friends did this but found that ssl did not take effect. Then there is a way to copy the ssleay32.dll and libeay32.dll files in the dlls folder to the C:WINDOWSsystem32 folder.

ssleay32.dll
libeay32.dll
php_openssl.dll

So how to determine whether ssl is effective?

It is time to check phpinfo. Write a simple phpinfo() test program and find the location of openssl. If OpenSSL support is enabled, it means that ssl has been turned on.

The above is the detailed content of How to use ssl in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:what are variables in phpNext article:what are variables in php