如何设置PHP网页浏览时进行验证?

2026-04-05 06:336阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计62个文字,预计阅读时间需要1分钟。

如何设置PHP网页浏览时进行验证?

phpif ($SERVER['PHP_AUTH_USER'] !='specialuser' || $SERVER['PHP_AUTH_PW'] !='secretpassword') { header('WWW-Authenticate: Basic Realm=Secret Stash'); header('HTTP/1.0 401 Unauthorized'); print('You must provide the proper credentials');}

if (($_SERVER['PHP_AUTH_USER'] != 'specialuser') || ($_SERVER['PHP_AUTH_PW'] != 'secretpassword')) { header('WWW-Authenticate: Basic Realm="Secret Stash"'); header('HTTP/1.0 401 Unauthorized'); print('You must provide the proper credentials!'); exit; }else{ echo 'ok'; }

如何设置PHP网页浏览时进行验证?

本文共计62个文字,预计阅读时间需要1分钟。

如何设置PHP网页浏览时进行验证?

phpif ($SERVER['PHP_AUTH_USER'] !='specialuser' || $SERVER['PHP_AUTH_PW'] !='secretpassword') { header('WWW-Authenticate: Basic Realm=Secret Stash'); header('HTTP/1.0 401 Unauthorized'); print('You must provide the proper credentials');}

if (($_SERVER['PHP_AUTH_USER'] != 'specialuser') || ($_SERVER['PHP_AUTH_PW'] != 'secretpassword')) { header('WWW-Authenticate: Basic Realm="Secret Stash"'); header('HTTP/1.0 401 Unauthorized'); print('You must provide the proper credentials!'); exit; }else{ echo 'ok'; }

如何设置PHP网页浏览时进行验证?