Skip to content

Instantly share code, notes, and snippets.

@artofhuman
Created April 22, 2012 09:04
Show Gist options
  • Save artofhuman/2462822 to your computer and use it in GitHub Desktop.
Save artofhuman/2462822 to your computer and use it in GitHub Desktop.
Debug info to file
function debug($var)
{
ob_start();
print_r($var);
$txt = ob_get_contents();
ob_clean();
file_put_contents($_SERVER['DOCUMENT_ROOT'] . '/bitrix/php_interface/debug.txt', $txt);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment