将图像路径转换为适合存储在MySQL Blob中的数据

时间:2015-05-11 16:06:37

标签: php mysql blob

我在该位置有一个文件

$imgloc = "../images/bg.jpg";

我如何:

  1. 将图像加载到PHP变量
  2. 变成BLOB合适的数据类型(如果还没有)
  3. 插入MySQL(如果需要任何其他步骤)

1 个答案:

答案 0 :(得分:2)

$imgHandler = fopen (imgloc, 'rb'); // open with read binary
$imgContent = fread ($imgHandler , filesize ($imgloc));
// now you can store $imgContent in MySQL