我有一组PHP脚本,可以将文件加载到数据库中,以便稍后使用自动更新程序。该程序正常工作,直到文件超过10MB范围。该脚本的粗略思想是它从特定位置的磁盘中提取文件,并将它们加载到数据库中。这允许我们存储在源代码控制中,并根据需要进行集合更新。
最初,我认为我根据初始搜索对数据库SQL进行了限制。但是,经过进一步测试,它似乎是PHP特有的。我检查了Apache错误日志,但我没有看到此脚本或包含的任何错误。一旦PHP脚本到达addslashes函数,脚本似乎就会停止执行。 (我在每个脚本语句之间添加了echo语句。)
我希望这是一个我想念的简单的东西,但是在网上搜索几个小时后,我找不到任何与addslashes相关的内容。
有什么想法吗?
提前致谢。
mysql_connect('localhost', '****', '****') or die('Could not connect to the database');
mysql_select_db('****') or die('Could not select database');
function get_filelist($path)
{
return get_filelist_recursive("/build/".$path);
}
function get_filelist_recursive($path)
{
$i = 0;
$list = array();
if( !is_dir($path) )
return get_filedetails($path);
if ($handle = opendir($path))
{
while (false !== ($file = readdir($handle)))
{
if($file!='.' && $file!='..' && $file[0]!='.')
{
if( is_dir($path.'/'.$file) )
{
$list = $list + get_filelist_recursive($path.'/'.$file);
}
else
{
$list = $list + get_filedetails($path.'/'.$file);
}
}
}
closedir($handle);
return $list;
}
}
function get_filedetails($path)
{
$item = array();
$details = array();
$details[0] = filesize($path);
$details[1] = sha1_file($path);
$item[$path] = $details;
return $item;
}
$productset = mysql_query("select * from product where status is null and id=".$_REQUEST['pid']);
$prow = mysql_fetch_assoc($productset);
$folder = "product/".$prow['name'];
$fileset = get_filelist($folder);
while (list($key, $val) = each($fileset))
{
$fh = fopen($key, 'rb') or die("Cannot open file");
$data = fread($fh,$val[0]);
$data = addslashes($data);
fclose($fh);
$filename = substr( $key, strlen($folder) + 1 );
$query = "insert into file(name,size,hash,data,manifest_id) values('".$filename."','".$val[0]."','".$val[1]."','".$data."','".$prow['manifest_id']."')";
$retins = mysql_query($query);
if( $retins == false )
echo "BUILD FAILED: $key, $val[0] $val[1].<br>\n";
}
header("Location: /patch/index.php?pid=".$_REQUEST['pid']);
答案 0 :(得分:1)
不要使用addslashes,在这种情况下使用mysql_real_escape_string
。此外,您可能会尝试插入此类大文件,从而达到max_allowed_packet限制。默认值为1MB。
如果您使用mysqli(建议使用),您可以指示该列是二进制的,它将以块的形式发送查询。
还要确保没有达到任何PHP内存限制或最长执行时间。