Skip to content

Instantly share code, notes, and snippets.

@CB9TOIIIA
Created November 22, 2017 14:58
Show Gist options
  • Save CB9TOIIIA/0189ce6ab70084c35b6954f17cf9c549 to your computer and use it in GitHub Desktop.
Save CB9TOIIIA/0189ce6ab70084c35b6954f17cf9c549 to your computer and use it in GitHub Desktop.
savetempfile отладка
function savetempfile($val)
{
$file = fopen( JFactory::getConfig()->get('tmp_path') . '/dump.log', 'w' );
fwrite( $file, print_r( $val, true ) );
flush();
fclose( $file );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment