我正试图从wordpress中的数据库生成一个csv文件。生成的csv文件包含生成的数据库数组和页面的html源代码。
你知道摆脱html代码的解决方案是什么吗?ob_start()/ob_end_clean()的策略;好像不行。
谢谢你的帮助。
<?php
ob_start();
$filename = 'provider.csv';
$headers = array('ID', 'Name', 'Location');
$handle = fopen('php://memory', 'w');
fputcsv($handle, $headers, ',', '"');
$results = $wpdb->get_results("SELECT * FROM provider");
foreach($results as $results1)
{
$row = array(
$results1->provider_id,
$results1->provider_name,
$results1->provider_location
);
fputcsv($handle, $row, ',', '"');
}
ob_end_clean();
fseek($handle, 0);
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename="' . $filename . '";');
fpassthru($handle);
fclose($handle);
?>
编辑:这是csv文件的样子
编辑:aniket patel的解决方案截图
1条答案
按热度按时间uelo1irk1#
请使用下面的代码,我想它会为你工作。