iphper/php-csv

There is no license information available for the latest version (1.0.1) of this package.

Installs: 3

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/iphper/php-csv

1.0.1 2026-02-06 09:57 UTC

This package is auto-updated.

Last update: 2026-02-06 11:02:36 UTC


README

使用教程

  1. 方法列表
方法 描述 示例
filename 设置文件名称 $csv->filename(string): static
read 读取文件 $csv->read(?string) : array
readFn 按行回调读取 $csv->readFn(fn ($row) => var_dump($row))
write 写入文件 $csv->write(array $data)
writeFn 按回调写入文件 $csv->writeFn(fn($add) => $add([['名', '年']]))
format 格式化列 $csv->format('列名', fn($v) => $v)
formats 格式化多列 $csv->format(['列名' => fn($v) => $v), ...]

使用示例

test/test.php