Skip to content

Instantly share code, notes, and snippets.

@FerraBraiZ
Last active April 28, 2020 12:48
Show Gist options
  • Save FerraBraiZ/fa8d8dbc30e579ecc69dc834f896f6d1 to your computer and use it in GitHub Desktop.
Save FerraBraiZ/fa8d8dbc30e579ecc69dc834f896f6d1 to your computer and use it in GitHub Desktop.
PHP WRITE TO FILE/LOG SplFileObject
<?php
$file = new \SplFileObject( 'SOMELOGNAME.LOG', 'a');
$file->fwrite( PHP_EOL );
$file->fwrite( 'SOME SHIT TO LOG' | Data e Hora: '.date('d-m-y-H-m-s') );
$file->fwrite( $SOMEVAR );
$file->fwrite( PHP_EOL );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment