只是想知道是否可以在没有重定向的情况下在 php 中发送标头请求?像回发网址
例如,我需要通过 php 调用一个 URL(例如http://example.test/?x=xxx&y=yyy),但是在调用它之后我不希望脚本被重定向到这个链接,我需要那个url 被调用,脚本继续正常执行。
<?php
// do something
header( 'location: http://example.test/?x=xxx&y=yyy' );
// do something else
?>