Skip to content

Instantly share code, notes, and snippets.

@szyku
Created April 14, 2019 16:00
Show Gist options
  • Save szyku/84f91d5e973688e1d91d683fe1bd7bc5 to your computer and use it in GitHub Desktop.
Save szyku/84f91d5e973688e1d91d683fe1bd7bc5 to your computer and use it in GitHub Desktop.
naivefopen3
<?php
class XYZ {
// ...
public static function openForRead(string $id): ?SplFileObject
{
$fileInfo = new SplFileInfo($id);
try {
return $fileInfo->openFile('r');
} catch (\Exception $e) {
return null;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment