PHPExcell を使用して、20 列の 4000 行をエクスポートしています。シートの 2 行おきに色を付けたかったので、ループを書きましたが、返されます
FAtal Error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 24 bytes) in D:\Data\xampp\htdocs\Classes\PHPExcel\Style\Supervisor.php
問題を解決するために2時間検索しましたが、失敗しました。私が見つけたすべてのトピックは、2010 年以前のかなり古いものです。私はキャッシングを使用しようとしましたが、これに似ています
$cacheMethod = PHPExcel_CachedObjectStorageFactory:: cache_to_phpTemp;
$cacheSettings = array( ' memoryCacheSize ' => '8MB');
PHPExcel_Settings::setCacheStorageMethod($cacheMethod, $cacheSettings);
しかし、それは役に立ちません。どうすればその問題を解決できますか?
そして最後に、ループを使用してxlsxを生成し、セルをフォーマットします:
$i = 2;
foreach($table as $row){
$objPHPExcel->getActiveSheet()
->setCellValue('A'.$i, $row[1])
->setCellValue('B'.$i, $row[2])
->setCellValue('C'.$i, $row[3])
->setCellValue('D'.$i, $row[4])
->setCellValue('E'.$i, $row[5])
->setCellValue('F'.$i, $row[6])
->setCellValue('G'.$i, $row[7])
->setCellValue('H'.$i, $row[8])
->setCellValue('I'.$i, $row[9])
->setCellValue('J'.$i, $row[10])
->setCellValue('K'.$i, $row[11])
->setCellValue('L'.$i, $row[12])
->setCellValue('M'.$i, $row[13])
->setCellValue('N'.$i, $row[14])
->setCellValue('O'.$i, $row[15])
->setCellValue('P'.$i, $row[16])
->setCellValue('Q'.$i, $row[17])
->setCellValue('R'.$i, $row[20])
->setCellValue('S'.$i, $row[21])
->setCellValue('T'.$i, $row[22]);
// Color every second row
if($i%2!=0){
$objPHPExcel->getActiveSheet()->getStyle('A'.$i.':T'.$i)->getFill()->applyFromArray(
array(
'type' => PHPExcel_Style_Fill::FILL_SOLID,
'startcolor' => array('rgb' => 'e8f4ff')
));
}
//color column "O"
if($i%2==0){
$objPHPExcel->getActiveSheet()->getStyle('O'.$i)->getFill()->applyFromArray(
array(
'type' => PHPExcel_Style_Fill::FILL_SOLID,
'startcolor' => array('rgb' => 'fffacd')
));
}
else{
$objPHPExcel->getActiveSheet()->getStyle('O'.$i)->getFill()->applyFromArray(
array(
'type' => PHPExcel_Style_Fill::FILL_SOLID,
'startcolor' => array('rgb' => 'fff9bd')
));
}
// color column "N"
if($i%2==0){
$objPHPExcel->getActiveSheet()->getStyle('N'.$i)->getFill()->applyFromArray(
array(
'type' => PHPExcel_Style_Fill::FILL_SOLID,
'startcolor' => array('rgb' => 'eaffee')
));
}
else{
$objPHPExcel->getActiveSheet()->getStyle('N'.$i)->getFill()->applyFromArray(
array(
'type' => PHPExcel_Style_Fill::FILL_SOLID,
'startcolor' => array('rgb' => 'ccffcc')
));
}
$i++;
}
編集:: 私は完全なコード coz を投稿します。これ以上何ができるかわかりません。新しい phpexcel オブジェクトを作成し、最初の行のみを列名付きのヘッダーとして空のテンプレートをインポートします。残りのセルは、事前設定されたスタイルで完全に空です。10,000 行のスタイルを設定しました。しかし、それでも同じエラーが返されます。コードがあります:
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
date_default_timezone_set('Europe/London');
if (PHP_SAPI == 'cli')
die('This example should only be run from a Web Browser');
/** Include PHPExcel */
require_once '../Classes/PHPExcel.php';
// Create new PHPExcel object
$objPHPExcel = new PHPExcel();
$objReader = PHPExcel_IOFactory::createReader('Excel2007');
$objReader = $objReader->load('components/com_uhlist/Classes/template.xlsx');
$template = $objReader->getActiveSheet();
$objPHPExcel->addExternalSheet($template);
$objPHPExcel->setActiveSheetIndex(1);
$user = JFactory::getUser();
$username = $user->get('username');
// Set document properties
$objPHPExcel->getProperties()->setCreator($username)
->setLastModifiedBy($username)
->setTitle("User & Host List");
// Add some data
// Aktywowanie arkusza
//$objPHPExcel->setActiveSheetIndex(-0);
// Export danych
$db = JFactory::getDBO();
$query = 'SELECT * FROM '.$db->getPrefix().'users_n_hosts';
$db->setQuery($query);
$table = $db->loadRowList();
$i = 2;
foreach($table as $row){
$objPHPExcel->getActiveSheet()
->setCellValue('A'.$i, $row[1])
->setCellValue('B'.$i, $row[2])
->setCellValue('C'.$i, $row[3])
->setCellValue('D'.$i, $row[4])
->setCellValue('E'.$i, $row[5])
->setCellValue('F'.$i, $row[6])
->setCellValue('G'.$i, $row[7])
->setCellValue('H'.$i, $row[8])
->setCellValue('I'.$i, $row[9])
->setCellValue('J'.$i, $row[10])
->setCellValue('K'.$i, $row[11])
->setCellValue('L'.$i, $row[12])
->setCellValue('M'.$i, $row[13])
->setCellValue('N'.$i, $row[14])
->setCellValue('O'.$i, $row[15])
->setCellValue('P'.$i, $row[16])
->setCellValue('Q'.$i, $row[17])
->setCellValue('R'.$i, $row[20])
->setCellValue('S'.$i, $row[21])
->setCellValue('T'.$i, $row[22]);
$i++;
}
// Nazwa arkusza
$objPHPExcel->getActiveSheet()->setTitle('User & Host');
// Set active sheet index to the first sheet, so Excel opens this as the first sheet
$objPHPExcel->setActiveSheetIndex(0);
// Redirect output to a client’s web browser (Excel2007)
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="User&Host_'.date('d-m-Y').'.xlsx"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save('php://output');
exit;
}
最新コード:: データをテンプレートに挿入:
$objPHPExcel = PHPExcel_IOFactory::createReader('Excel2007');
$objPHPExcel = $objPHPExcel->load('components/com_uhlist/Classes/template.xlsx');
$objPHPExcel->setActiveSheetIndex(0);
$user = JFactory::getUser();
$username = $user->get('username');
// Set document properties
$objPHPExcel->getProperties()->setCreator($username)
->setLastModifiedBy($username)
->setTitle("User & Host List");
// Export danych
$db = JFactory::getDBO();
$query = 'SELECT * FROM '.$db->getPrefix().'autocad_users_n_hosts';
$db->setQuery($query);
$table = $db->loadRowList();
$i = 2;
foreach($table as $row){
$objPHPExcel->getActiveSheet()
->setCellValue('A'.$i, $row[1])
->setCellValue('B'.$i, $row[2])
->setCellValue('C'.$i, $row[3])
->setCellValue('D'.$i, $row[4])
->setCellValue('E'.$i, $row[5])
->setCellValue('F'.$i, $row[6])
->setCellValue('G'.$i, $row[7])
->setCellValue('H'.$i, $row[8])
->setCellValue('I'.$i, $row[9])
->setCellValue('J'.$i, $row[10])
->setCellValue('K'.$i, $row[11])
->setCellValue('L'.$i, $row[12])
->setCellValue('M'.$i, $row[13])
->setCellValue('N'.$i, $row[14])
->setCellValue('O'.$i, $row[15])
->setCellValue('P'.$i, $row[16])
->setCellValue('Q'.$i, $row[17])
->setCellValue('R'.$i, $row[20])
->setCellValue('S'.$i, $row[21])
->setCellValue('T'.$i, $row[22]);
$i++;
}
// Redirect output to a client’s web browser (Excel2007)
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="User&Host_'.date('d-m-Y').'.xlsx"');
header('Cache-Control: max-age=0');
$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save('php://output');
exit;