我在通过AJAX执行的PHP脚本中调用file_put_contents()
。每当我执行此脚本时,客户端页面都会重新加载,这是不可取的。有没有办法阻止PHP脚本重新加载页面?
我尝试使用以下内容修改标头,并将其作为file_put_contents
函数中的上下文参数传递:
$context = stream_context_create(
array(
'http' => array(
'follow_location' => false
)
)
);