Is it possible write a string or log into the console?
Just like in JSP, if we print something like system.out.println("some")
, it will be there at the console, not at a page.
log() and the json_encode() Function to Write to the Console in PHP. We can use the json_encode() function along with the JavaScript console. log() to write to the console in PHP. The json_ecode() function converts the given associative array into a JSON object and indexed array into a JSON array.
The echo command is used in PHP to print any value to the HTML document. Use <script> tag inside echo command to print to the console.
The console. log() method in HTML is used for writing a message in the console. It indicates an important message during testing of any program. The message is sent as a parameter to the console.
Or you use the trick from PHP Debug to console.
First you need a little PHP helper function
function debug_to_console($data) { $output = $data; if (is_array($output)) $output = implode(',', $output); echo "<script>console.log('Debug Objects: " . $output . "' );</script>"; }
Then you can use it like this:
debug_to_console("Test");
This will create an output like this:
Debug Objects: Test
Firefox
On Firefox you can use an extension called FirePHP which enables the logging and dumping of information from your PHP applications to the console. This is an addon to the awesome web development extension Firebug.
Chrome
However if you are using Chrome there is a PHP debugging tool called Chrome Logger or webug (webug has problems with the order of logs).
More recently Clockwork is in active development which extends the Developer Tools by adding a new panel to provide useful debugging and profiling information. It provides out of the box support for Laravel 4 and Slim 2 and support can be added via its extensible API.
Using Xdebug
A better way to debug your PHP would be via Xdebug. Most browsers provide helper extensions to help you pass the required cookie/query string to initialize the debugging process.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With