- Jul 28 Wed 2021 11:30
[Javascript] JS匯出html的table表格(續)-圖片匯出問題
- Jul 26 Mon 2021 17:03
[Javascript] JS匯出html的table表格
- Jul 22 Thu 2021 18:37
[dataTable][轉] 解決Jquery DataTable csv導出亂碼
官方範例在匯出CSV時,預設是 UTF-8 without BOM,
導致部分電腦開啟時會產生亂碼
需要改設定值 bom : true 才能解決
官方Docoument連結 : https://datatables.net/reference/button/csv
範例:
$('.js-exportable').DataTable({
dom: 'Bfrtip',
responsive: true,
buttons: [
'copy', {
extend: 'csv',
text: 'CSV',
bom : true
}, 'excel', 'pdf', 'print'
]
});
- Jul 22 Thu 2021 18:06
[dataTable] 匯出特定欄或列 - Exclude column from export in Datatables Buttons
- Jul 21 Wed 2021 17:38
[PHP] GuzzleHttp PUT呼叫
$r = $client->request('PUT', 'http://httpbin.org/put', [ 'json' => ['foo' => 'bar'] ]);
使用request,第一格帶PUT,第二格帶url,第三格帶陣列,陣列中要帶名為"json"參數,內容為要丟進此URL的參數們的陣列。
- Jul 07 Wed 2021 15:54
[Notepad++] 比較兩份檔案內容
- Jun 28 Mon 2021 11:06
[PHP] phpspreadsheet 讀寫檔案
非常好用的php讀寫各種報表檔案的plug-in
https://phpspreadsheet.readthedocs.io/en/latest/topics/reading-and-writing-to-file/
- Jun 13 Sun 2021 17:32
[MP3] My Mp4 to Mp3 Audio Converter - MP4轉MP3
- Jun 09 Wed 2021 16:06
[Laravel] Laravel migration 中的 $table->timestamps();
- Jun 07 Mon 2021 14:34
[Laravel][PHP][轉] 使用 Composer 管理 PHP 套件
