In php, how does one check whether the https protocol is currently in use?

Source: Internet
Author: User
I can see that many programs use the following code {code...}. But many servers didn't send the HTTPS header to php-fpm at all? What should I do? We can see that many programs use the following code:

PhpIf (strtoupper ($ _ SERVER ['https']) = 'on '){...}

However, many servers do not send messages at all.HTTPSThis header is for php-fpm? What should I do?

Reply content:

We can see that many programs use the following code:

PhpIf (strtoupper ($ _ SERVER ['https']) = 'on '){...}

However, many servers do not send messages at all.HTTPSThis header is for php-fpm? What should I do?

PhpFunction is_HTTPS () {if (! Isset ($ _ SERVER ['https']) return FALSE; if ($ _ SERVER ['https'] = 1) {// Apache return TRUE ;} elseif ($ _ SERVER ['https'] === 'on') {// IIS return TRUE ;} elseif ($ _ SERVER ['server _ port'] = 443) {// other return TRUE;} return FALSE ;}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.