JSON导出功能

时间:2014-11-19 12:24:31

标签: php json function redirect export

我有这种小情况。我创建了一个函数,可以让我以JSON格式导出一些数组。

到目前为止,这是我的代码:

function export( $option_values ) {
$json = json_encode( $option_values );
$filename= '_' . date('Y-m-d_h.i.s', time());
$filename= '_WP-' . get_bloginfo('version');
$filename= '.json';
header( "Content-Disposition: attachment; filename='$filename'" );
header( 'Content-type: text/json');
header( 'Content-Length: ' . mb_strlen( $json ) );
header( 'Connection: close');

我收到此错误消息:

  

警告:无法修改标头信息 - 已发送的标头。

如何完成此任务?

1 个答案:

答案 0 :(得分:2)

您的代码中某处输出了某些内容。这可能是有意的(使用echoprint之类的语句等),或者在关闭PHP标记(?>)之后加载带有额外换行符的php脚本时无意识。

删除输出,你就可以了。