Skip to content

Instantly share code, notes, and snippets.

@juice49
Created November 6, 2017 15:39
Show Gist options
  • Save juice49/015d49632fac0c26d7723c4eeb856c44 to your computer and use it in GitHub Desktop.
Save juice49/015d49632fac0c26d7723c4eeb856c44 to your computer and use it in GitHub Desktop.
PHP log
<?php
function l ($name) {
return function ($line) use ($name) {
file_put_contents($name, $line . PHP_EOL, FILE_APPEND);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment