gpt4 book ai didi

php - file_get_contents 不适用于 tmp 文件

转载 作者:行者123 更新时间:2023-11-29 00:09:38 24 4
gpt4 key购买 nike

我的问题:我想使用 BLOB 将图像插入到 MySQL 表中。在同一个项目中,我上传了一个文件,但只是 VARCHAR 列中的链接,它可以工作。现在我尝试使用 file_get_contentsfread 并且它们都返回空字符串。我的代码有什么问题?还是php.ini配置有问题?代码是:

    $imgdata = NULL;
$imgext = NULL;
$file = $_FILES['foto'];
if (!in_array($file['type'], $con->ext)) {
exit('Archivo no permitido');
} else {
if ($file['error'] === FALSE) {
exit('Error ' . $file['error']);
} else {
$attachtmp = $file['tmp_name'];
$imgext = $file['type'];
if (file_exists($attachtmp)) {
if (is_uploaded_file($attachtmp)) {
$fp = fopen($attachtmp, 'r+b');
$imgdata = fread($fp, filesize($attachtmp));
fclose($fp);
//if (empty(file_get_contents($attachtmp))) {
//$imgdata = $con->real_escape_string(file_get_contents($attachtmp));
//}
} else {
exit('<h3>Error interno del servidor<h3>');
}
} else {
exit('<h3>Error error interno del servidor<h3>');
}
}
}

最佳答案

首先检查你的结果:

// Check $_FILES['foto']['error'] value.
switch ($_FILES['foto']['error']) {
case UPLOAD_ERR_OK:
break;
case UPLOAD_ERR_NO_FILE:
throw new RuntimeException('No file sent.');
case UPLOAD_ERR_INI_SIZE:
case UPLOAD_ERR_FORM_SIZE:
throw new RuntimeException('Exceeded filesize limit.');
default:
throw new RuntimeException('Unknown errors.');
}

取自php manual

关于php - file_get_contents 不适用于 tmp 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25792512/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com