作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我搜索了很多但仍然没有找到问题的原因:
当调用我的 php 网络服务时,我对登录凭据进行编码(“PeterPan:Ützel([])ÄÄÖÖ”)并使用 UTF-8 传递它们:
$.ajaxSetup({
beforeSend: function(request) {
request.setRequestHeader("Authentication", auth);
},
type: "POST",
contentType: "charset=utf-8"
});
var tok = sUsername + ':' + sPassword;
var hash = this.Base64.encode(tok);
var auth = hash;
$.ajax({
url: "php/login.php"
});
在 PHP 中,我使用以下方法对字符串进行解码:
$headers = array();
foreach($_SERVER as $key => $value) {
if (substr($key, 0, 5) <> 'HTTP_') {
continue;
}
$header = str_replace(' ', '-', ucwords(str_replace('_', ' ', strtolower(substr($key, 5)))));
$headers[$header] = $value;
}
$response['Encoded'] = base64_decode($headers['Authentication']);
$encoded = json_encode($response);
header("Content-Type: text/html; charset=utf-8");
echo $encoded;
当响应到达时,编码后的字符串如下所示:“PeterPan:\u00dctzel([])\u00c4\u00c4\u00d6\u00d6'”
变音符号编码不正确...
我做错了什么?
最佳答案
您可以执行以下操作
JavaScript :
// returns PeterPan%3A%C3%9Ctzel(%5B%5D)%C3%84%C3%84%C3%96%C3%96
var value = encodeURIComponent(sUsername + ':' + sPassword);
PHP:
header('Content-Type: text/html; charset=utf-8'); // might need this
// returns PeterPan:Ützel([])ÄÄÖÖ
echo rawurldecode("PeterPan%3A%C3%9Ctzel(%5B%5D)%C3%84%C3%84%C3%96%C3%96");
关于javascript - 在 JS 中进行 Base64 编码并在 PHP 中进行解码时出现变音问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22038816/
COW 不是奶牛,是 Copy-On-Write 的缩写,这是一种是复制但也不完全是复制的技术。 一般来说复制就是创建出完全相同的两份,两份是独立的: 但是,有的时候复制这件事没多大必要
我是一名优秀的程序员,十分优秀!