我有两个关联数组,我必须在一个excel文件中的两个不同工作表上写。
这是我尝试使用一个数组的单张纸
<?php header('Content-type: application/ms-excel');
$excel_name=$_POST['excel_name'];
header('Content-Disposition: attachment; filename="'.$excel_name.'.xls"');
print_r($_POST['html_excel']);
?>
其中'html_excel'是我的关联数组
现在我想知道如何在不使用PHPExcel或任何其他库的情况下创建多个Excel工作表,并将关联数组打印到其中。
请帮忙...... 谢谢