natilosir/excel
最新稳定版本:1.0.0
Composer 安装命令:
composer require natilosir/excel
包简介
A PHP library to work with Excel files using PhpSpreadsheet.
README 文档
README
A simple PHP utility for working with Excel files using PhpSpreadsheet.
use Natilosir\Excel\Excel;
Example 1: Create Excel file from array
$data = [ ["Name", "Age", "Salary"], ["John Doe", 28, 5000], ["Jane Smith", 34, 7000], ["Mark Taylor", 45, 9000], ]; Excel::ToExcel($data, "example.xlsx");
Example 2: Convert Excel file to array
$arrayFromExcel = Excel::ToArray("example.xlsx"); print_r($arrayFromExcel);
统计信息
- 总下载量: 3
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-12-18