Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <?php
  2. class XYZ {
  3. // ...
  4. public static function openForRead(string $id): ?resouce
  5. {
  6. $resource = @fopen($id, 'r');
  7. return $resource ? $resource : null;
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement