이것은 내 코드입니다
<?php
$dir=dirname(_FILE_);
require $dir."/PHPExcel/PHPExcel.php";
$objPHPExcel=new PHPExcel();
$ objSheet =$objPHPExcel->getActiveSheet();
$objSheet->setTitle("demo");
//$objSheet->setCellValue("A1","Coco")->setCellValue(" b1 ","계란");
$array=array(
array("이름","나이"),
array("Dake","58")
);
$objSheet -> FromArray ($ array);
$ objwriter = phpexcel_iofactory :: createwriter ($ objphpexcel, "Excel5");
$ objwriter = new Phpexcel_writer_excel5 ($ objphpexcel); .ms-excel');
header('Content-Disposition: attachment;filename="ch3.xls"');
header('Cache-Control: max-age=0');
$objWriter- >save("php://output");
?> 그러나 생성된 xls 파일은 정확히 다음과 같습니다:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional// EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/ xhtml"> ;
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>제목 없는 문서< ;/title>
</head>
<본문>�� ࡱ � �� ���� ���������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ������� ����
���� ����������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ������������������������������������������ ����오 �� +'��0� @ H h � �
� � � 제목 없음 스프레드시트 알 수 없음 작성자 알 수 없음 작성자@� � �@ � @�� �@ � �
� � B � = �%r 8 X " 1 � � 교정� �� � � �� � � �� � ... ... ��������������3f������ff����f������������������ ������������̙��̙3f�3���������fff����3f3�f333�3�3f33�333� 데모� � g� � � �Y
T t^�� 'Y�S
�
� � * + � � � � � � & ffffff�?( �?) �?�" d X X 333333�?333333�? U } $ } $ �
�
�
M@> � @d� � d g g �����
�� ���� � � +,��0� H P X ` h p
x � �
워크시트 Feuilles de calcul Root Entry �������� �F�� �@ � �� �@ � � 요약정보( ���� �F�워크북 ������������ �F � DocumentSummaryInformation8 ������������ �F �� ��� ������������������������������������ ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ���������������������������������������������� ��
</body>
</html>
$dir=dirname(_FILE_); 첫 번째 줄이 잘못되었습니다. 매직 상수는 _FILE_이 아니라 __FILE__입니다.