Skip to content

Instantly share code, notes, and snippets.

@ojhaujjwal
Last active April 6, 2020 01:14
Show Gist options
  • Save ojhaujjwal/e149652c4b6769debae275c7c5dc2abe to your computer and use it in GitHub Desktop.
Save ojhaujjwal/e149652c4b6769debae275c7c5dc2abe to your computer and use it in GitHub Desktop.
<?php
$lines = getLines('/path-to-file');
foreach ($lines as $line) {
if (SOME CONDITION) {
break;
}
echo $line. "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment