Voting

: six plus three?
(Example: nine)

The Note You're Voting On

cottton at i-stats dot net
10 years ago
this method uses \n for new line (i expected PHP_EOL but well ...).
if you want to log the string as one single line use something like:
<?php
$separator
= ', ';
$one_line = str_replace("\n", $separator, $e->getTraceAsString());
?>

<< Back to user notes page

To Top