Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active February 6, 2016 09:34
Show Gist options
  • Save kurozumi/a7f0fb9f7f0015eff236 to your computer and use it in GitHub Desktop.
Save kurozumi/a7f0fb9f7f0015eff236 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"));
$file = new SplFileObject("sample3.txt", "w");
foreach($it as $line)
{
$file->fwrite($line);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment