我该如何短路以PHP启动下载的标头调用?

时间:2018-08-13 14:30:57

标签: php http http-headers

我有此代码:

header( 'Content-Description: File Transfer' );
header( 'Content-Disposition: attachment; filename=' . $filename );
header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );

它开始下载文件,但在此之前,我有一个:

do_action(wp_export)

这是WordPress领域的事件,我所能做的就是说

when action wp_export happens, callback these functions.

那么,在该脚本到达它们之前,我如何对它说“不,我不希望您使用这些标头进行初始化”?

0 个答案:

没有答案