我有此代码:
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.
那么,在该脚本到达它们之前,我如何对它说“不,我不希望您使用这些标头进行初始化”?