Postman 调用本地 PHP API 时,为何找不到 $_SERVER[\'HTTP_ORIGIN\']?(找不到.调用.PHP.Postman.HTTP_ORIGIN...)
postman 调用 localhost php api 时为何找不到 $_server['http_origin']?
postman 调用本地 php api 时出现“notice: undefined index: http_origin”错误,是因为 origin 头是浏览器 cors 中用来区分请求来源的,而其他环境不受其限制。
postman 模拟 http_origin要模拟 origin 头,在 postman 的 headers 标签中添加一个名为 origin 的自定义头,并将值设置为网站的 url(格式为
由于不是所有用户代理都会发送 origin 头,因此在 php 中应使用 isset() 或 ?? 操作符检查其是否存在后再取用。例如:
$origin = $_server['http_origin'] ?? '';
或
$origin = ''; if (isset($_SERVER['HTTP_ORIGIN'])) { $origin = $_SERVER['HTTP_ORIGIN']; }
以上就是Postman 调用本地 PHP API 时,为何找不到 $_SERVER[\'HTTP_ORIGIN\']?的详细内容,更多请关注知识资源分享宝库其它相关文章!