我正在使用 PHP 即时创建 CSV,然后我需要将此 CSV 文件附加到 Swift Mailer Message。我尝试在创建的文件上使用 file_get_content 以及在创建的文件上使用 chunk_split(base64_encode(file_get_contents()) 以及在将文件写入磁盘之前附加文件。不写入磁盘我在 CSV 中得到 Resource #183,并附加它与 file_get_content 我在 CSV 文件的每一行中只得到一个字符串,有人知道我在做什么错吗?
if(!file_exists(_PS_ORDERS_DIR_.$orderDate.'/'.$file_name.'.csv'))
{
if($file = fopen (_PS_ORDERS_DIR_.$orderDate.'/'.$file_name.'.csv', 'x+'))
{
foreach ($list as $fields)
{
fputcsv($file, $fields);
}
$attachment['mime'] = 'application/vnd.ms-excel';
$attachment['content'] = file_get_contents($file);
$attachment['name'] = $order.'order';
EDIT
Mail::Send(1, 'order_conf', 'Order CSV Attachment', $success, 'test@email.com', Address, NULL, NULL, $attachment); // attach and send
}
}