Skip to content

Instantly share code, notes, and snippets.

@finagin
Created March 15, 2018 13:50
Show Gist options
  • Select an option

  • Save finagin/4022e2bcf2beb540253929e4df3fdb0a to your computer and use it in GitHub Desktop.

Select an option

Save finagin/4022e2bcf2beb540253929e4df3fdb0a to your computer and use it in GitHub Desktop.
<?php declare(strict_types=1);
if (!function_exists('dump')) {
function dump(...$args)
{
ob_start();
var_dump($args);
file_put_contents('/tmp/igor.manual.log', ob_get_clean());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment