Skip to content

Instantly share code, notes, and snippets.

@szyku
Created April 28, 2019 10:14
Show Gist options
  • Save szyku/ed1135a2e7b8459cc662a40fae223455 to your computer and use it in GitHub Desktop.
Save szyku/ed1135a2e7b8459cc662a40fae223455 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