2017-07-10 82 views
1

我有下面的代碼,當在WordPress管理面板中按下按鈕時觸發。這將打開一個名爲'ss-stock-export.csv'的csv文件。保存CSV導出到服務器

如何將此文件保存到我的上傳目錄中的服務器上wp-content/uploads/exports/?我試圖使用file_put_contents,但似乎沒有工作正確。 CSV文件出現在正確的位置,但它是空白的。可能是我的$output有問題?

<?php 
function generate_stock_report_csv() { 
    // output headers so that the file is downloaded rather than displayed 
    header('Content-Type: text/csv; charset=utf-8'); 
    // set file name with current date 
    header('Content-Disposition: attachment; filename=ss-stock-export.csv'); 
    // create a file pointer connected to the output stream 
    $output = fopen('php://output', 'w'); 
    // set the column headers for the csv 
    $headings = array('sku', 'qty', 'is_in_stock'); 
    // output the column headings 
    fputcsv($output, $headings); 
    // get all simple products where stock is managed 

    // get all product variations where stock is managed 
    $args = array(
     'post_type'   => 'product_variation', 
     'post_status'  => 'publish', 
     'posts_per_page' => -1, 
     'orderby'   => 'title', 
     'order'    => 'ASC', 
     'meta_query' => array(
      array(
       'key'  => '_stock', 
       'value'  => array('', false, null), 
       'compare' => 'NOT IN' 
      ) 
     ) 
    ); 

    $loop = new WP_Query($args); 
    while ($loop->have_posts()) : $loop->the_post(); 
     $product = new WC_Product_Variation($loop->post->ID); 
     $ss_sku = get_post_meta($product->variation_id, 'ss_sku', true); 
     $stock = $product->stock; 
     settype($stock, "integer"); 
     if ($stock > 0){ $stock_status = 1;} else {$stock_status = 0;} 
     $row = array($ss_sku , $product->stock, $stock_status); 
     fputcsv($output, $row); 
    endwhile; 
    $filename = "ss-stock-export.csv"; // Trying to save file in server 
    file_put_contents(ABSPATH . "wp-content/uploads/exports/" . $filename, $output); 
} ?> 
+0

?您的導出文件夾將相對於此... –

回答

0

此所做的文件夾腳本正在運行的伎倆

 $csv = "sku,qty,is_in_stock \n";//Column headers 
     $args = array(
      'post_type'   => 'product_variation', 
      'post_status'  => 'publish', 
      'posts_per_page' => -1, 
      'orderby'   => 'title', 
      'order'    => 'ASC', 
      'meta_query' => array(
       array(
        'key'  => '_stock', 
        'value'  => array('', false, null), 
        'compare' => 'NOT IN' 
       ) 
      ) 
     ); 

     $loop = new WP_Query($args); 
     while ($loop->have_posts()) : $loop->the_post(); 
      $product = new WC_Product_Variation($loop->post->ID); 
      $ss_sku = get_post_meta($product->variation_id, 'ss_sku', true); 
      $stock = $product->stock; 
      settype($stock, "integer"); 
      if ($stock > 0){ $stock_status = 1;} else {$stock_status = 0;} 
      $row = array($ss_sku , $product->stock, $stock_status); 
      $row_array= array($row); 
       foreach ($row_array as $record){ 
       $csv.= $record[0].','.$record[1].','.$record[2]."\n"; //Append data to csv 
       } 
     endwhile; 
     $csv_handler = fopen ('ss-stock-export.csv','w'); 
     fwrite ($csv_handler,$csv); 
     fclose ($csv_handler); 
     file_put_contents(ABSPATH . "wp-content/uploads/exports/ss-stock-export.csv", $csv);  
     } 
1

您可以使用wp-config.php定義的常量ABSPATH一個絕對路徑傳遞到file_put_contents。這樣,你從哪裏運行腳本並不重要。

file_put_contents(ABSPATH . "wp-content/uploads/exports/" . $filename, $output);