Re: [請益] 輸出csv檔
我貼我的原始碼 各位大大 比較了解
function backup_execl($sheet,$query)
{
global $DB_class;
$filename=$sheet.date("(Y-m-d)",time()).".csv";
$content="流水號,主題,內容,張貼日期,相關檔案,公告類型\n";
$rs=$DB_class->DB_query($query);
while($row = mysql_fetch_assoc($rs))
{
$str_content=str_replace("\r\n","" ,$row['content']);
//內容文章有會有逗號我把它換成全形
$str_content=str_replace(",",",",$str_content);
$content.=$row['notice_id'].",".$row['title'].",".$str_content.",".$row['post_date'].",".$row['word'].
"\n";
}
}
請問一下 前後雙引號 要加在哪裡呢?才可以保留文章的逗號
又不會被CSV檔案切割成多個欄位!!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 59.104.150.154
→
11/23 11:04, , 1F
11/23 11:04, 1F
推
11/23 11:17, , 2F
11/23 11:17, 2F
→
11/23 11:17, , 3F
11/23 11:17, 3F
討論串 (同標題文章)
PHP 近期熱門文章
PTT數位生活區 即時熱門文章