Maison  >  Article  >  développement back-end  >  请版主帮忙,请问这是什么意思

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

WBOY
WBOYoriginal
2016-06-23 13:55:141052parcourir

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可以获取到。
你可以当传一个字符串给浏览器。这个我也没怎么用过。

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn