-
-
Save tsh-code/55688c626c3ed6a8134feab7919e3e5f to your computer and use it in GitHub Desktop.
naivefopen3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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