Like a console with Google Chrome

I want a console with Google Chrome when I test my site. If I find an error, I want to see it in Developer> Developer Tools> Console using the link. Now my Google Chrome does not show the error link. eg. when I query from the database and I show this query using jQuery, but it has some error. But the console cannot output this error link and cannot give me something.php code.

+4
source share
2 answers

Chrome Developer Tools is for client issues only. If you want to debug PHP in your browser, you can use FirePHP , the Firebug extension.

+1
source

If you want to debug PHP errors / exceptions in the Google Chrome console, try using the PHP Console extension. This is amazing!

+8
source

Source: https://habr.com/ru/post/1314804/


All Articles