Skip to content

Instantly share code, notes, and snippets.

@ojhaujjwal
Last active March 12, 2020 09:53
Show Gist options
  • Save ojhaujjwal/fddd88f49e86cb80be382732a45058b8 to your computer and use it in GitHub Desktop.
Save ojhaujjwal/fddd88f49e86cb80be382732a45058b8 to your computer and use it in GitHub Desktop.
<?php
function createLogger($file)): Generator {
$f = fopen($file, 'a');
while (true) {
$line = yield;
fwrite($f, $line. "\n");
}
}
$log = createLogger('/path-to-log/file.log');
$log->send("First");
$log->send("Second");
$log->send("Third");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment