【发布时间】:2011-06-09 21:18:48
【问题描述】:
我正在试验 Firefox 的内容安全策略。基本上它是一个特殊的网页标头,告诉浏览器哪些资源是有效的。
当某些资源因违反政策而无效时,Firefox 会以 json 格式向给定 URI 发送报告。
这是一份典型的报告
array(1) {
["csp-report"]=>
array(4) {
["request"]=>
string(71) "GET http://example.com/?function=detail&id=565 HTTP/1.1"
["request-headers"]=>
string(494) "Host: example.com
User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:2.0b10pre) Gecko/20110115 Firefox/4.0b10pre
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: es-ar,en-us;q=0.8,es;q=0.5,en;q=0.3
Accept-Encoding: gzip, deflate
Accept-Charset: UTF-8,*
Keep-Alive: 115
Connection: keep-alive
Referer: http://example.com/index.php?function=search&query=Pata+de+cambio+
Cookie: the cookie
"
["blocked-uri"]=>
string(4) "self"
["violated-directive"]=>
string(30) "inline script base restriction"
}
}
内容类型为application/json; charset=UTF-8
现在。我希望这可以在 $_POST 中作为 REQUEST_METHOD==POST 但 post 总是空的。 我可以从 php://input 访问它,但问题是:为什么请求在 $_POST 中不可用?
我什至不能使用 filter_input 并且 $_REQUEST 是空的...
【问题讨论】: