Skip to content

Instantly share code, notes, and snippets.

@caramelchocolate
Created July 5, 2019 11:10
Show Gist options
  • Save caramelchocolate/2a5648b2641d212471d26b1f61625519 to your computer and use it in GitHub Desktop.
Save caramelchocolate/2a5648b2641d212471d26b1f61625519 to your computer and use it in GitHub Desktop.
1行ずつ読み込み
<?php
$file = new SplFileObject(__FILE__);
while (!$file->eof()) {
echo $file->current();
$file->next();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment