Skip to content

Instantly share code, notes, and snippets.

@ojhaujjwal
Last active April 6, 2020 01:13
Show Gist options
  • Save ojhaujjwal/9ea4bf1ac189b2633a4123012e88364f to your computer and use it in GitHub Desktop.
Save ojhaujjwal/9ea4bf1ac189b2633a4123012e88364f to your computer and use it in GitHub Desktop.
<?php
function getLines($file): array {
$f = fopen($file, 'r');
if (!$f) throw new Exception();
$lines = [];
while ($line = fgets($f)) {
$lines[] = $line;
}
return $lines;
}
$filePath = $argv[1];
$lines = getLines($filePath);
foreach ($lines as $line) {
echo $line. "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment