使用 PHP 将 PDF 文件存储为 MySQL BLOB
使用 PHP 将 PDF 文件存储为 MySQL 中的 BLOB(二进制大对象)时,建议考虑在数据库中存储二进制数据的潜在缺点。但是,如果您选择这样做,可以采用以下方法:
首先,定义一个包含整数 ID 字段和名为 DATA 的 BLOB 列的表。
存储 PDF 文件,使用以下查询:
<code class="php">$result = mysql_query('INSERT INTO table ( data ) VALUES ( \'' . mysql_real_escape_string(file_get_contents('/path/to/the/file/to/store.pdf')) . '\' );');</code>
警告: 不鼓励使用 mysql_* 函数,因为它们已被弃用。考虑使用 mysqli 或 PDO。
对于 PHP 5.x 及更早版本:
<code class="php">$result = mysqli_query($db, 'INSERT INTO table ( data ) VALUES ( \'' . mysqli_real_escape_string(file_get_contents('/path/to/the/file/to/store.pdf'), $db) . '\' );');</code>
对于 PHP 7 及更高版本:
预准备语句是在 MySQL 中存储二进制数据的推荐方法:
<code class="php">$stmt = $mysqli->prepare('INSERT INTO table ( data ) VALUES (?)'); $stmt->bind_param('b', file_get_contents('/path/to/the/file/to/store.pdf')); $stmt->execute();</code>
以上是如何在 PHP 中将 PDF 文件存储为 MySQL BLOB(带有代码示例)?的详细内容。更多信息请关注PHP中文网其他相关文章!