//메모리 제한 해제ini_set('memory_limit','-1'); //웹사이트 TimeOut 셋팅ini_set('max_execution_time', 600);//orset_time_limit(600); 해당 셋팅이 적용안될경우Apache 설정 확인 /etc/httpd/conf/httpd.conf 내용중#######################################################################################Timeout 420## KeepAlive: Whether or not to allow persistent connections (more than# one request per connection). Set to "Off" to deactiva..
1. 해당 셀 자동 줄바꿈 모드로 설정 $objPHPExcel->getActiveSheet()->getStyle(num2alpha(16, $rowNum))->getAlignment()->setWrapText(true); - 16 : 열번호 - $rowNum : 행번호(for 문을 통해 해당 열의 모든 행을 적용) - num2alpha 로 셀 영역 지정 num2alpha(0, 0) => A1, num2alpha(0, 1) => A2, num2alpha(1, 1) => B1 2. 줄바꿈 문자 변환 $objPHPExcel->setActiveSheetIndex(0)->setCellValue(num2alpha(16, $rowNum), str_replace(" ", chr(10), $pageL->model_no))..