Array-to-CSV-export功能在WordPress-plugin中面临一个问题

时间:2015-04-23 07:11:27

标签: php arrays wordpress csv

我在插件页面中使用简单的数组到CSV导出功能来生成报告。

当我运行此代码时,我收到一个错误,它将导出整个html内容以及我期望的数组。

这是我的代码:

function convert_to_csv($input_array, $output_file_name, $delimiter)
{
    clearstatcache();
    /** open raw memory as file, no need for temp files */
    $temp_memory = fopen('php://memory', 'w');
    /** loop through array  */



    foreach ($input_array as $line) {
        /** default php csv handler **/
        fputcsv($temp_memory, $line, $delimiter);
    }

    //echo '<pre>';
    //print_r($temp_memory); exit;
    /** rewrind the "file" with the csv lines **/
    fseek($temp_memory, 0);
    /** modify header to be downloadable csv file **/
    header('Content-Type: application/csv');
    header('Content-Disposition: attachement; filename="' . $output_file_name . '";');
    /** Send file to browser for download */
    fpassthru($temp_memory);
}

/** Array to convert to csv */

$array_to_csv = Array(
    Array(12566,
        'Enmanuel',
        'Corvo'
    ),
    Array(56544,
        'John',
        'Doe'
    ),
    Array(78550,
        'Mark',
        'Smith'
    )

);

clearstatcache();

convert_to_csv($array_to_csv, 'report.csv', ',');

4 个答案:

答案 0 :(得分:0)

我猜测在调用此函数后WP正在执行其正常操作,因此您将在CSV之后获得HTML模板输出。在fpassthru之后加入drupal_exit()语句应该这样做,但是你需要小心,这不会搞乱Wordpress在每个页面响应结束时所做的任何事情。例如,Drupal具有exit功能,仅用于此目的。我不太熟悉WP以确定,但是wp_die() function的文档表明你可以使用PHP {{1}}而没有太多问题

答案 1 :(得分:0)

您可以使用此代码生成扩展名为.xlsx的excel文件

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/alasql/0.3/alasql.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.7.12/xlsx.core.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
var insuranceArray = new Array(insuranceInfo);
var bills = db.bills;

//Create tabs in excel file
var opts = [{sheetid:'Insurance Information',header:true},{sheetid:'bills Info',header:false}];

alasql('SELECT * INTO XLSX("Data.xlsx",?) FROM ?',
                 [opts,[insuranceArray,bills]]);

// Close the window once you save the file
window.onfocus=function(){ 
    window.close();
}

此代码适用于我......

答案 2 :(得分:0)

在导出功能顶部尝试此操作。

    global $wpdb;
    $wpdb->hide_errors();
    @set_time_limit(0);
    if ( function_exists( 'apache_setenv' ) )
        @apache_setenv( 'no-gzip', 1 );
    @ini_set('zlib.output_compression', 0);

    //@ob_clean();
    @ob_end_clean(); // to prevent issue that unidentified characters when opened in MS-Excel in some servers


        header( 'Content-Type: text/csv; charset=UTF-8' );
        header( 'Content-Disposition: attachment; filename=export.csv' );
        header( 'Pragma: no-cache' );
        header( 'Expires: 0' );

        $fp = fopen('php://output', 'w');

答案 3 :(得分:-1)

最简单的生成csv的方法,无需在服务器上保存文件

<?php
$array = Array(
    Array(
        12566,
        'Enmanuel',
        'Corvo'
    ),
    Array(
        56544,
        'John',
        'Doe'
    ),
    Array(
        78550,
        'Mark',
        'Smith'
    )
    
);
arr_to_csv($array);
function arr_to_csv($array)
{
    header("Content-type: application/csv");
    header("Content-Disposition: attachment; filename=test.csv");
    $fp = fopen('php://output', 'w');
    foreach ($array as $row) {
        fputcsv($fp, $row);
    }
}