Warning: Undefined variable $kind in /home4/wgate/public_html/include/checkfunpdo.php on line 662

Warning: Undefined variable $vers in /home4/wgate/public_html/include/checkfunpdo.php on line 662

Warning: Undefined variable $kind in /home4/wgate/public_html/include/checkfunpdo.php on line 662

Warning: Undefined variable $vers in /home4/wgate/public_html/include/checkfunpdo.php on line 662
:::| 目前位置圖示目前位置:首頁圖示回首頁 | 主功能頁圖示相關問答
將檔案存入資料庫

[日期]:2019/05/29  [瀏覽人數]:672
在安全考量上可以將檔案存入資料庫, 資料表欄位設定為 blob可存65K, mediumblob可存16M, longblob可存4G 在存入資料表須注意,若使用直接存入資料表的欄位內時,就是在存入檔案時處理檔案上傳和寫入資料表是在同一個程式,未另建function將檔案傳至function再存檔的方式,不須使用base64_encode編碼再存入和讀出時使用base64_decode解碼,如使用function的方式存入則須使用base64_encode編碼再存入和讀出時使用base64_decode解碼。