我在 hello.php 示例中添加了 header 函数,如下所示:
<?php
header("xxxxx: yyyyy");
fwrite(STDOUT, "see headers.<br><br>Hello, PHP!<br>current working directory: ".getcwd());
exit(200); // return an HTTP code (200:'OK')
?>
但在萤火虫中没有找到这样的标题。
谁能解释如何使用 gwan 在 php cli 中添加其他标头?