# excel **Repository Path**: zms-code/excel ## Basic Information - **Project Name**: excel - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-16 - **Last Updated**: 2025-04-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 数据导出为execl ``` 需要安装 xlswriter 扩展 ``` #### 介绍([xlswriter](https://xlswriter.viest.me/)) ```php setFileName('工作报表') ->setColumn(['姓名', '手机']) ->setData([ ['卫青', '19877777777'], ['霍去病', '19866666666'] ]) ->appendData(['张三', '18767778987']) ->appendData(['李四', '18987676544']) ->save(); ```