首页 > 开发 > PHP > 正文

如何在PHP中进行身份认证

2024-05-04 23:00:52
字体:
来源:转载
供稿:网友
<?
if(!isset($php_auth_user))
{
header("www-authenticate: basic realm=请输入你的用户名和密码:");
header("http/1.0 401 unauthorized");
echo "验证失败,你不能网络资源!";
exit;
}
else
{
if ($php_auth_user!="username" or $php_auth_pw!="password")
{
header("http/1.0 401 unauthorized");
echo "验证失败,你不能网络资源!";
exit;
}
}

?>
转自:动态网制作指南 www.knowsky.com


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表