亲爱的救世主你好,
我几天前打开了一个帖子,想方法用PHPExcel按单元格值搜索/过滤行。这个社区的开发人员节省了我的一天(再次感谢man !!!)。从现在开始,我一直在努力解决另一个问题。 ¿是否可以使用PHPExcel删除所有重复的行? 为了让你处于这种情况这里是我的示例表:
想要在他的单元格中显示所有行“I1 / 027”(DONE!),但没有重复的行:
Hours | Place | Name
------|-------|-----------------
3 |I1/027 | example1 //------> Want to add it to my list!!!
6 |I2/025 | example2 //------> Ignore this (no I1/027)
7 |I1/030 | example3 //------> Ignore this (no I1/027)
2 |I1/027 | example4 //------> Want to add it to my list!!!
3 |I1/027 | example1 //------> Don't want this row, it's repeated!!!
和phpexcel代码:
<?php if(isset($_FILES['file']['name'])) { ?>
<!-- Container progress bar -->
<div id="progress" style="width:500px;border:1px solid #ccc;"></div>
<!-- progress info -->
<div id="information" style="width"></div>
<?php require_once 'reader/Classes/PHPExcel/IOFactory.php';
//Extra functions
function get_cell($cell, $objPHPExcel){
//Cell selection
$objCell = ($objPHPExcel->getActiveSheet()->getCell($cell));
//taking cell value
return $objCell->getvalue();
}
function pp(&$var){
$var = chr(ord($var)+1);
return true;
}
//==========Displaying Code
$name = $_FILES['file']['name'];
$tname = $_FILES['file']['tmp_name'];
$type = $_FILES['file']['type'];
if($type == 'application/vnd.ms-excel')
{ // excel 97 extension
$ext = 'xls';
}
else if($type == 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet')
{ // excel 2007 and 2010 extensions
$ext = 'xlsx';
}else
{ // invalid extension
echo -1;
exit();
}
$xlsx = 'Excel2007';
$xls = 'Excel5';
//read creator
$objReader = PHPExcel_IOFactory::createReader($$ext);
//loading
$objPHPExcel = $objReader->load($tname);
$dim = $objPHPExcel->getActiveSheet()->calculateWorksheetDimension();
// put $start and $end array
list($start, $end) = explode(':', $dim);
if(!preg_match('#([A-Z]+)([0-9]+)#', $start, $rslt)){
return false;
}
list($start, $start_h, $start_v) = $rslt;
if(!preg_match('#([A-Z]+)([0-9]+)#', $end, $rslt)){
return false;
}
list($end, $end_h, $end_v) = $rslt;
//starting to read excel doc
$table = "<table class='tabla'>";
for($v=$start_v; $v<=$end_v; $v++){
// calculate progress bar
$percent = intval($v/$end_v * 100)."%";
// progress bar update
echo '<script language="javascript">
document.getElementById("progress").innerHTML="<div style=\"width:'.$percent.';background-color:#ddd;\"> '.$percent.'</div>";
document.getElementById("information").innerHTML="'.$v.' files processed.";</script>';
// buffer flush
echo str_repeat(' ',1024*64);
// send exit to navigator
flush();
sleep(0.25);
//horizontal reading
$tempRow= "<tr>";
$contentFound=false;
for($h=$start_h; ord($h)<=ord($end_h); pp($h)){
$cellValue = get_cell($h.$v, $objPHPExcel);
$tempRow.= "<td>";
if($cellValue !== null){
if($cellValue=="I1/027") $contentFound=true;
$tempRow.= $cellValue;
}
$tempRow.= "</td>";
}
$tempRow.= "</tr>";
if($contentFound) $table.=$tempRow;
}
// process completed
echo '<script language="javascript">document.getElementById("information").innerHTML="Process completed"</script><br>';
echo $table;
}?>
发现这个函数我试图利用,但没有运气:
function removeDuplicates($inputFileName, $objPHPExcel) {
$worksheet = $objPHPExcel->getActiveSheet();
$urn = array();
foreach ($worksheet->getRowIterator() as $row) {
$rowIndex = $row->getRowIndex();
$cellValue = $worksheet->getCell('A'.$rowIndex)->getValue();
array_push($urn, $cellValue);
}
$numberOfURNs = count($urn);
for ($rowIndex = $numberOfURNs; $rowIndex != 1; $rowIndex--) {
$cellValue = $worksheet->getCell('A'.$rowIndex)->getValue();
for ($i = $rowIndex - 2; $i != 0; $i--) {
if ($urn[$i] == $cellValue) {
$worksheet->removeRow($rowIndex);
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'CSV');
$objWriter->save($inputFileName);
break;
}
}
}
return $objPHPExcel = checkExtension($inputFileName);
}
提前多多感谢!!
答案 0 :(得分:1)
有多种解决方案。所有这些都有一些缺点。您可以将所有行与excel文件中的所有行进行比较,这意味着您需要遍历每行的整个文件。如果您有1000行,那就是1000 * 1000比较。如果您熟悉这种表示法,那么运行时间为O(n ^ 2),这基本上意味着如果您的行数增加,它将变得很慢。
您可以将所有值读入数组数组,并让PHP使用array_unique执行硬件操作。 PHP文档中提供了将其与多维数组一起使用的示例。它的工作原理是序列化内部数组,然后再使用array_unqie和反序列化。我不知道如何实现PHP中的数组函数,但序列化/反序列化可能需要花费很多时间。此外,所有值都存在于内存中,如果您的Excel文件非常大,这可能会成为一个问题。
我可以成像的第三种可能性是将所有数据插入数据库,然后让数据库使用distinct关键字进行重复检查。因此,只需将其导入导入表,然后使用select语句中的插入将其插入正确的表中,而不重复。然后再次删除导入表的内容。我认为如果必须将数据插入到数据库中,这将是我首选的解决方案