我会使用Php将图像作为Blob添加到mysql数据库。我可以将图像添加到mysql数据库,但我无法添加图像。
代码:
$image = fopen($_FILES['image']['tmp_name'], 'rb');
$connection = new PDO("mysql:host=localhost;dbname=php","php","");
$adddata = $connection -> prepare("insert into images (image) value (?)");
$adddata -> bindParam(1, $image, PDO::PARAM_LOB);
$adddata -> execute();
我知道有不同的方法,但我会使用这段代码。