标签: php mysql blob
我在该位置有一个文件
$imgloc = "../images/bg.jpg";
我如何:
答案 0 :(得分:2)
$imgHandler = fopen (imgloc, 'rb'); // open with read binary $imgContent = fread ($imgHandler , filesize ($imgloc)); // now you can store $imgContent in MySQL