Im Admin-Center auf Exchange klicken, um zum EAC zu gelangen: Postfacheinstellungen im Exchange EAC konfigurieren…
How to Debug and Log to the Browser Console in PHP
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" );
Dieser Beitrag hat 0 Kommentare