请版主帮忙,请问这是什么意思

WBOY
Release: 2016-06-23 13:55:14
Original
1056 people have browsed it

header('WWW-Authenticate: Basic  realm = "Realm-Name"');
header('Status: 401 Unauthorized');
header('HTTP/1.0 401 Unauthorized');
header("Location: http://www.example.com/");
header('WWW-Authenticate: Negotiate');
header('WWW-Authenticate: NTLM', false);
这几个是什么意思??经常在php中看到哦,我在php手册上看,还是不太明白。请指点。谢谢你。


回复讨论(解决方案)

http://www.php.net//manual/zh/function.header.php

header('WWW-Authenticate: Basic  realm = "Realm-Name"');
?句用于??登入,??出一?框?用?????密?,?入的??和密?可以通?
$_SERVER['PHP_AUTH_USER'];
$_SERVER['PHP_AUTH_PW'];
?取?行判?


header('Status: 401 Unauthorized');
header('HTTP/1.0 401 Unauthorized');
??句输出状态值(401)到浏览器,主要用于访问权限控制。


header("Location: http://www.example.com/"); 
?面302重定向到http://www.example.com


header('WWW-Authenticate: Negotiate');  
?置一??文信息

header('WWW-Authenticate: NTLM', false); 
?置一??文信息,因?後面的??是false, 不?覆?之前的Negotiate,所以???文信息?共存

header('WWW-Authenticate: Basic  realm = "Realm-Name"');
?句用于??登入,??出一?框?用?????密?,?入的??和密?可以通?
$_SERVER['PHP_AUTH_USER'];
$_SERVER['PHP_AUTH_PW'];
?取?行判?


header('Status: 401 Unauthorized');
header('HTTP/1.0 401 Unauthorized');
??句输出状态值(401)到浏览器,主要用于访问权限控制。


header("Location: http://www.example.com/"); 
?面302重定向到http://www.example.com


header('WWW-Authenticate: Negotiate');  
?置一??文信息

header('WWW-Authenticate: NTLM', false); 
?置一??文信息,因?後面的??是false, 不?覆?之前的Negotiate,所以???文信息?共存



感谢ing,真心有用。这样一看就清晰多了,但是像这一句
header('WWW-Authenticate: Negotiate');  
?置一??文信息
这个报文信息由什么用》?

这句是发给浏览器用的,用js可以获取到。
你可以当传一个字符串给浏览器。这个我也没怎么用过。

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