Skip to content

Instantly share code, notes, and snippets.

@babab
Created November 9, 2015 14:36
Show Gist options
  • Save babab/61bff4afbcce92e52459 to your computer and use it in GitHub Desktop.
Save babab/61bff4afbcce92e52459 to your computer and use it in GitHub Desktop.
Quickly dump a variable to a line in a file
<?php
function dumpdebug($data)
{
file_put_contents('/var/www/dumpdebug', $data . "\n", FILE_APPEND | LOCK_EX);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment