Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
画像とファイルを MySQL データベースに保存する方法を知りたいです。
そのような画像やファイルを取得したいwww.example/rsrc.php/example-image.jpg
www.example/rsrc.php/example-image.jpg
Facebook の例: facebook-example.com/rsrc.php/v2/yw/r/svhh826BLKd.png
データベース テーブルに BLOB 列を作成し、
おそらくミディアムブロブ。
ただし、写真をディレクトリに保持し、パスをデータベースに保持することをお勧めします。乾杯
CREATE TABLE tblname(ID INT,IMAGE BLOB); INSERT INTO tblname(ID,IMAGE) VALUES(1,LOAD_FILE('C:/test.txt'));
この質問へのコメントからの回答を回答ボックスに追加しました..