Skip to content

Instantly share code, notes, and snippets.

@anthonyaxenov
Last active December 24, 2021 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonyaxenov/6eafac478528ac6d300d8f9b4460c286 to your computer and use it in GitHub Desktop.
Save anthonyaxenov/6eafac478528ac6d300d8f9b4460c286 to your computer and use it in GitHub Desktop.
[PHP] Simple and universal file logger
<?php
function output(...$data)
{
$result = [];
foreach ($data as $something) {
if ($something instanceof Illuminate\Support\Collection) {
$something = $something->toArray();
}
if (is_array($something)) {
$something = var_export($something, true);
}
if (empty($something)) {
$something = '';
}
if (is_object($something)) {
if (method_exists($something, 'toArray')) {
$something = $something->toArray();
} elseif (method_exists($something, 'jsonSerialize')) {
$something = $something->jsonSerialize();
} else {
$something = var_export($something, true);
}
}
$result[] = $something;
}
file_put_contents(
'test_' . date('d.m.Y') . '.log',
'[' . date('H:i:s') . '] ' .
implode(' ', $result) . PHP_EOL,
FILE_APPEND
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment