douyimin1083 2013-12-03 06:43
浏览 22
已采纳

通过PHP的CSV标头?

I have the following code to produce a CSV file from content in Wordpress but I need to add headers to the four columns that are produced. Where can I define these as they will always be fixed names?

$fileName = 'Optical_test_results.csv';
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header('Content-Description: File Transfer');
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename={$fileName}");
header("Expires: 0");
header("Pragma: public");

$fh = @fopen( 'php://output', 'w' );
$arr_query_args = array(
    'numberposts'  => -1,
    'orderby'      => 'post_title',
    'post_type'    => 'page',
    'exclude'      => '24'
);

$arr_posts = get_posts( $arr_query_args );
global $post;

foreach( $arr_posts as $this_post ) { 
    $permalink = get_permalink($this_post->ID);
    $page_number = get_post_meta($this_post->ID, "part_number", true);
    $serial = $this_post->post_title;
    $s1 = get_post_meta($this_post->ID, 'tracking_number', true);
    $s2 = get_the_title($page_number);
    $s3 = $permalink;
    $results = $serial.','.$s1.','.$s2.','.$s3."
";
    echo $results;
    fputcsv($fh);
}


$headerDisplayed = false;
fclose($fh);

exit;

展开全部

  • 写回答

3条回答 默认 最新

  • dqf2015 2013-12-03 06:51
    关注

    You can use fputcsv just like a data row. There is no difference in a header and data in csv.

    fputcsv($fh, array('header 1', 'header 2', 'header 3'));
    

    In your loop you are not using fputcsv correctly:

    $results = $serial.','.$s1.','.$s2.','.$s3."
    ";
    echo $results;
    fputcsv($fh);
    

    should be

    fputcsv($fh, array($serial, $s1, $s2, $s3));
    

    and you are opening the file after the loop has completed.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 TMUXHS4412如何防止静电,
  • ¥30 Metashape软件中如何将建模后的图像中的植被与庄稼点云删除
  • ¥20 机械振动学课后习题求解答
  • ¥15 IEC61850 客户端和服务端的通讯机制
  • ¥15 MAX98357a(关键词-播放音频)
  • ¥15 Linux误删文件,请求帮助
  • ¥15 IBMP550小型机使用串口登录操作系统
  • ¥15 关于#python#的问题:现已知七自由度机器人的DH参数,利用DH参数求解机器人的逆运动学解目前使用的PSO算法
  • ¥15 发那科机器人与设备通讯配置
  • ¥15 Linux环境下openssl报错
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部