caherrera/fullcsv

FullCSV是一个简单的面向对象的PHP 5.6+ CSV操作库

v2.0.0 2019-05-23 01:54 UTC

This package is auto-updated.

Last update: 2024-09-23 13:17:25 UTC


README

读写CSV文件

用法

读取器

<?php
$filename = 'test.csv';
$read     = new \FullCsv\Reader($filename);
?>

写入器

<?php
$filename = 'test.csv';
$writer   = new \FullCsv\Writer($filename);
?>