T-Mobile Netz 0151 0160 0170 0171 0175 - 13Vodafone Netz 01520 01522 0162 0172 0172…
How to Debug and Log to the Browser Console in PHP
JuralMin / Pixabay
Just create this simple function and use the console for debugging and logging PHP.
function debug_to_console( $data ) {
$output = $data;
if ( is_array( $output ) ) {
$output = implode( ',', $output);
}
echo "<script>console.log( 'Debug Objects: " . $output . "' );</script>";
}
debug_to_console( "Test" );
