Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Created February 8, 2016 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/02bdf16e194f7e70ebb6 to your computer and use it in GitHub Desktop.
Save kurozumi/02bdf16e194f7e70ebb6 to your computer and use it in GitHub Desktop.
【PHP】AppendIteratorクラスを使って複数のファイルを結合してその中から数字の行だけ取得する方法
<?php
$it = new AppendIterator();
$it->append(new SplFileObject("sample.txt", "r"));
$it->append(new SplFileObject("sample2.txt", "r"));
$lines = new RegexIterator($it, '/^\d*$/');
foreach($lines as $line)
{
var_dump($line);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment