开发者

How to use Pear's File_CSV

开发者 https://www.devze.com 2023-02-26 06:50 出处:网络
How to open a CSV file for reading with Pear\'s File_CSV 开发者_StackOverflowlibrary?Answering my own question here:

How to open a CSV file for reading with Pear's File_CSV 开发者_StackOverflowlibrary?


Answering my own question here:

<?php

require_once 'File/CSV.php';

$csv_file = __DIR__ . "/file_name.csv";

$config = File_CSV::discoverFormat($csv_file);
while ($res = File_CSV::readQuoted($csv_file, $config)) {

    print_r($res);
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号