我有下面的代碼,當在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);
} ?>
?您的導出文件夾將相對於此... –