file_put_contents导致页面刷新

时间:2018-06-12 02:18:21

标签: php ajax file-put-contents

我在通过AJAX执行的PHP脚本中调用file_put_contents()。每当我执行此脚本时,客户端页面都会重新加载,这是不可取的。有没有办法阻止PHP脚本重新加载页面?

我尝试使用以下内容修改标头,并将其作为file_put_contents函数中的上下文参数传递:

$context = stream_context_create(
    array(
        'http' => array(
            'follow_location' => false
        )
    )
  );

0 个答案:

没有答案