如何在php中的标头中添加新的数组值

时间:2018-10-31 07:10:40

标签: php api http-headers postman

这是我的 test_b.php 文件:

if(isset($_POST['username'])){
  $url = 'http://my_url/test_b.php';
  $x = get_headers($url, 1);
  print_r($x);
}

我在邮递员中得到这样的输出: enter image description here

我想在 [Content-Type] 之后的标题中添加另一个参数,例如 [Authkey]

我是API开发的新手。谁能帮忙。预先谢谢你。

1 个答案:

答案 0 :(得分:-1)

header('Authkey: your key');
if(isset($_POST['username'])){
    $url = 'http://localhost/jobs/ZikraBytes/starshow/test_b.php';
    $x =get_headers($url, 1);
    print_r($x);
}