gpt4 book ai didi

php - PHP 和 mySQL 无法正常工作的文件上传 (.pdf),

转载 作者:行者123 更新时间:2023-11-30 23:00:21 25 4
gpt4 key购买 nike

好的,所以我正在做这个项目,它是一个文件存储库,现在我正在尝试实现上传文件的功能,例如 .pdf,我遵循了以下指南 http://www.php-mysql-tutorial.com/wikis/mysql-tutorials/uploading-files-to-mysql-database.aspx

但我仍然遇到以下问题:页面一直在加载。当我检查我的数据库时,标题和内容已存储,但格式、大小和内容与值一样保持为 0。

所以我正在使用 MVC 文件系统。

我的表由以下内容组成

CREATE TABLE IF NOT EXISTS `FoldersFiles` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`Title` varchar(50) NOT NULL,
`Description` varchar(255) NOT NULL,
`Tag` varchar(20) NOT NULL,
`FileSize` int(11) DEFAULT NULL COMMENT 'The size is calculated in MD',
`UploadedDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`LastEditDate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`Format` int(6) DEFAULT NULL,
`UserID` int(11) NOT NULL,
`ParentID` int(11) DEFAULT NULL,
`Content` longblob,
PRIMARY KEY (`ID`),
KEY `UserID` (`UserID`,`ParentID`),
KEY `ParentID` (`ParentID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=83 ;

我的 View 允许用户上传新文件:

<form method="post" class="basic-frm" id="newFolder" action="../Controller/folders.php" enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="1000000">
<label>
<span>Title:</span>
<input id="title" type="text" name="filetitle"/>
</label>
<label>
<span>Description:</span>
<input id="description" type="text" name="filedescription"/>
</label>
<label>
<span>Tag:</span>
<input id="tag" type="text" name="filetag" />
</label>
<label>
<input id="file" type="file" name="file" />
<input id="submit" type="submit" name="submit" class="button"/>
</label>
</form>

我的 Controller 如下:

if ((isset($_POST['filetitle']))   && (isset($_POST['filedescription'])) && (isset($_POST['filetag']))  && (isset($_FILES['file'])))
{
$title = $_POST['filetitle'];
$description = $_POST['filedescription'];
$tag = $_POST['filetag'];
$fileName = $_FILES['file']['name'];
$fileTmpName = $_FILES['file']['tmp_name'];
$size = $_FILES['file']['size'];
$format = $_FILES['file']['type'];

$clean = array();

#checking if the data is clean.
if((ctype_alnum(str_replace(array(' ', "'", '-'), '',$title))) && (ctype_alnum(str_replace(array(' ', "'", '-'), '',$description))) && (ctype_alnum(str_replace(array(' ', "'", "-"), '',$tag))))
{
$clean['title'] = $title;
$clean['description'] = $description;
$clean['tag'] = $tag;
}


if((isset($clean['title'])) && (isset($clean['description'])) && (isset($clean['tag'])))
{
$fp = fopen($fileTmpName, 'r');
$content = fread($fp, filesize($fileTmpName));
$content = addslashes($content);
fclose($fp);

if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
}

require_once('../Model/Folder.php');
$folder = new Folder();

if(!isset($_SESSION['parentID']))
{
$rootID = $folder->getRoot($_SESSION['userID']);
}
else
{
$rootID = $_SESSION['parentID'];
}
$folder->setInfo($_SESSION['userID'],$clean['title'],$clean['description'],$clean['tag'],$rootID,$size,$format,$content);
header('Location: ../View/folders.php');
var_dump($clean);
}
else
{
echo "Wrong data";
}
}

setInfo 方法:

public function setInfo($userID,$title,$description,$tags,$parentID,$fileSize,$format,$content)
{
$this->userID=$userID;
$this->title= $title;
$this->description = $description;
$this->tag = $tags;
$this->format = $format;
$this->fileSize = $fileSize;
$this->content = $content;

$dbh = new PDO($this->dsn,$this->dbUser,$this->dbpassword);

$insertQuery = <<<'insertQuery'
INSERT INTO `FoldersFiles` (`Title`,`Description`,`Tag`,`UserID`,`ParentID`,`LastEditDate`,`FileSize`,`Format`,`Content`)
VALUES(?,?,?,?,?,?,?,?,?)
insertQuery;

$dateFormat = "Y-m-d H:i:s";
$time = date($dateFormat);

$sth = $dbh->prepare($insertQuery);
$sth->execute(array($title,$description,$tags,$userID,$parentID,$time,$fileSize,$format,$content));
}

public function getInfo($userID, $parentId )
{
$this->userID = $userID;

$dbh = new PDO($this->dsn,$this->dbUser,$this->dbpassword);
$selectQuery = <<<'selectQuery'
SELECT * FROM `FoldersFiles` WHERE `userID` = ? AND `ParentID` = ?
selectQuery;

$sth = $dbh->prepare($selectQuery);
$sth->execute(array($userID,$parentId));
$result = $sth->fetchAll(PDO::FETCH_ASSOC);
return $result;
}

所以问题又来了,当我尝试上传一个文件时,它一直在加载,在我去 phpmyadmin 检查我的数据后,插入了标题和描述,但 Filze 大小、内容和格式保持为 0。

最佳答案

我的 PHP 挂起并且您正在使用 fread,这很可能是问题的原因。如果我不得不猜测文件或数据有问题(没有损坏,但可能不存在)。

尝试在没有整个 MVC 的情况下制作另一个脚本,并尝试从服务器目录而不是从文件中读取它。

如果可行,请使用您的表单和页面请求对其进行扩展。

如果可行,请对您的脚本进行部分重建。

这可能是很长的路要走,但它总能用于调试。因为如果你想找到问题消除其余部分。

关于php - PHP 和 mySQL 无法正常工作的文件上传 (.pdf),,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24341156/

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