[User:root Time:05:47:12 Path:/home/liangdong/php]$ php csv.php [User:root Time:05:47:14 Path:/home/liangdong/php]$ cat csv.out aaa null111 222444 123123 456[User:root Time:05:47:17 Path:/home/liangdong/php]$ cat csv.php <?php $fin = fopen('csv.txt', 'r');$fout = fopen('csv.out', 'w');while (($row = fgetcsv($fin, 0, ' ', ' ', ' ')) !== false) { $index = array_search(123, $row); if ($index !== false) { $filter[$index] = true; }}fseek($fin, 0, SEEK_SET);while (($row = fgetcsv($fin, 0, ' ', ' ', ' ')) !== false) { $out_row = array(); foreach ($row as $index => $value) { if (isset($filter[$index])) { $out_row[] = $value; } } if (!empty($out_row)) { fputcsv($fout, $out_row, ' ', ' '); }}fclose($fin);fclose($fout);?><div class="clear"></div>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号