我刚刚开始使用PHPExcel.我的大型电子表格无法全部加载到内存中(内存失败).为了只加载我需要的工作表的各个部分,我尝试使用文档中提供的MyReadFilter代码,但是该代码比我高一点,我希望有人可以帮助我理解它.
从PHPExcel文档中,这里是函数:
class ReadFilter implements PHPExcel_Reader_IReadFilter
{
private $_startRow = 0;
private $_endRow = 0;
private $_columns = array();
/** Get the list of rows and columns to read */
public function __construct($startRow, $endRow, $columns) {
$this->_startRow = $startRow;
$this->_endRow = $endRow;
$this->_columns = $columns;
}
public function readCell($column, $row, $worksheetName = '') {
// Only read the rows and columns that were configured
if ($row >= $this->_startRow && $row <= $this->_endRow) {
if (in_array($column,$this->_columns)) {
return true;
}
}
return false;
}
}
我正在使用以下行来调用PHPExcel
// Get the selected Excel file, passed from form
$testFile = $_FILES['upload_test']['tmp_name'];
// Identify the file type of the selected file
$inputFileType = PHPExcel_IOFactory::identify($testFile);
// Create a reader object of the correct file type
$objReader = PHPExcel_IOFactory::createReader($inputFileType);
// Instantiate the filter class and apply it to the reader object
$filterSubset = new ReadFilter(1,1000,range('A','Z'));
$objReader->setReadFilter($filterSubset);
// Load the selected file into the reader
$objWorkbook = $objReader->load($testFile);
我正在使用以下语法从生成的工作表对象中检索数据:
$someValue= $objWorkbook->getSheet($idx)->getCell('B11')->getCalculatedValue();
我肯定我还会遇到其他问题,但是我的第一个问题是关于调用该函数的.如果我将上面的行从:
$filterSubset = new ReadFilter(1,1000,range('A','Z'));
至:
$filterSubset = new ReadFilter(1,1000,range('A','AA')); //Last column changed
整个读取失败.实际上,我只需要从B列中计算出的值,但是该列的引用范围远至AS列,因此我也需要阅读它们.有人可以告诉我如何使用此功能读取Z列或对其进行修改吗?理想情况下,我只想阅读从B到AS散布的大约12列的内容,但我也无法弄清楚.
非常感谢您的帮助.
解决方法:
范围(‘A’,’AA’);无效,请尝试创建您自己的自定义范围
例
echo "<pre>";
print_r(xrange('AA', 'ZZ'));
使用功能
function xrange($start, $end, $limit = 1000) {
$l = array();
while ($start !== $end && count($l) < $limit) {
$l[] = $start;
$start ++;
}
$l[] = $end;
return $l;
}