Created
February 8, 2016 13:08
-
-
Save kurozumi/02bdf16e194f7e70ebb6 to your computer and use it in GitHub Desktop.
【PHP】AppendIteratorクラスを使って複数のファイルを結合してその中から数字の行だけ取得する方法
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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