承接 noki/large-csv-converter 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

noki/large-csv-converter

Composer 安装命令:

composer require noki/large-csv-converter

包简介

Fast and memory-efficient Laravel package for converting large CSV, XLSX and JSON files.

README 文档

README

License: MIT Laravel package for fast and memory-efficient CSV and Excel conversions.

This package allows you to easily convert large CSV files to XLSX or JSON format, and vice versa — all while keeping low memory usage thanks to the excellent OpenSpout library.

🚀 Features

  • Convert CSV → XLSX, XLSX → CSV, and CSV → JSON
  • Stream-based processing for very large files
  • Memory-safe even for multi-gigabyte CSVs
  • Detects and handles headers automatically
  • Fully compatible with Laravel (auto-discovery supported)
  • Works on Linux, macOS, and Windows

🧩 Requirements

  • PHP ≥ 8.1

  • Laravel ≥ 9.x

  • PHP extensions:

    • ext-zip
    • ext-xmlreader

⚙️ Installation

Install the package via Composer:

composer require noki/large-csv-converter

Laravel will automatically register the service provider and alias.

🧠 Basic Usage

Import the class:

use Noki\LargeCsvConverter\LargeCsvConverter;

🟢 Example 1: Convert CSV → XLSX (simple)

use Noki\LargeCsvConverter\LargeCsvConverter;

LargeCsvConverter::csvToXlsx(
    csv_file_path: '/var/www/html/large-csv/test.csv',
    excel_file_path: '/var/www/html/large-csv/test.xlsx',
);

This reads test.csv and creates test.xlsx in the specified directory. If the first row of the CSV is a header, it will be preserved automatically.

🧩 Advanced Usage (with optional parameters)

You can customize delimiters, encoding, and whether the first line is a header:

use Noki\LargeCsvConverter\LargeCsvConverter;

LargeCsvConverter::csvToXlsx(
    csv_file_path: '/var/www/html/large-csv/test.csv',
    excel_file_path: '/var/www/html/large-csv/test.xlsx',
    first_line_is_header: true,       // Default: true
    delimiter: ';',                   // Default: ','
    enclosure: '"',                   // Default: '"'
    encoding: 'UTF-8',                // Default: 'UTF-8'
);

🔄 XLSX → CSV

Convert Excel files back to CSV:

use Noki\LargeCsvConverter\LargeCsvConverter;

LargeCsvConverter::xlsxToCsv(
    csv_file_path: '/var/www/html/large-csv/output.csv',
    excel_file_path: '/var/www/html/large-csv/input.xlsx',
);

You can again customize options:

use Noki\LargeCsvConverter\LargeCsvConverter;

LargeCsvConverter::xlsxToCsv(
    csv_file_path: '/var/www/html/large-csv/output.csv',
    excel_file_path: '/var/www/html/large-csv/input.xlsx',
    first_line_is_header: true,   // Default: true
    delimiter: ',',               // Default: ','
    enclosure: '"'                // Default: '"'
);

📄 CSV → JSON

Convert large CSVs directly into JSON files:

use Noki\LargeCsvConverter\LargeCsvConverter;

LargeCsvConverter::csvToJson(
    csv_file_path: '/var/www/html/large-csv/test.csv',
    json_file_path: '/var/www/html/large-csv/test.json',
);

Advanced example:

use Noki\LargeCsvConverter\LargeCsvConverter;

LargeCsvConverter::csvToJson(
    csv_file_path: '/var/www/html/large-csv/test.csv',
    json_file_path: '/var/www/html/large-csv/test.json',
    first_line_is_header: true,     // If CSV has header row
    delimiter: ',',                 // Field separator
    enclosure: '"',                 // Text enclosure
    encoding: 'UTF-8'               // File encoding
);

🧰 CSV → Array

Read CSV into PHP array (with header detection and memory checks):

use Noki\LargeCsvConverter\LargeCsvConverter;

$array = LargeCsvConverter::csvToArray(
    csv_file_path: '/var/www/html/large-csv/test.csv'
);

Advanced usage:

use Noki\LargeCsvConverter\LargeCsvConverter;

$array = LargeCsvConverter::csvToArray(
    csv_file_path: '/var/www/html/large-csv/test.csv',
    first_line_is_header: true,     // Default: true
    delimiter: ',',                 // Default: ','
    enclosure: '"',                 // Default: '"'
    encoding: 'UTF-8'               // Default: 'UTF-8'
);

⚠️ Memory Safety

csvToArray() automatically estimates average memory per row and throws an exception if your PHP memory limit is about to be exceeded.

If you need to handle huge files, increase memory_limit in your php.ini, for example:

memory_limit = 512M

📦 Dependencies and Licenses

This package is licensed under the MIT License.

It uses the following open-source libraries:

🧑‍💻 Author

Novak Urošević GitHub: @novakurosevic

License

This package is licensed under the MIT License.

It uses the following open-source libraries:

noki/large-csv-converter 适用场景与选型建议

noki/large-csv-converter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 01 月 01 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 noki/large-csv-converter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 noki/large-csv-converter 我们能提供哪些服务?
定制开发 / 二次开发

基于 noki/large-csv-converter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 16
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-01