Skip to content

Instantly share code, notes, and snippets.

@tsh-code
Forked from szyku/fopenexample.php
Created June 10, 2019 09:40
Show Gist options
  • Save tsh-code/f7406013b8295b8472ec8463488025c0 to your computer and use it in GitHub Desktop.
Save tsh-code/f7406013b8295b8472ec8463488025c0 to your computer and use it in GitHub Desktop.
fopen example
<?php
$handler = @fopen(join(DIRECTORY_SEPARATOR, [__DIR__, 'credit_cards.txt']), "r");
if ($handler) {
return CreditCardNumberExtractor::createFromHandler($handler);
}
/* ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment