The Web Blinders logo

Programming

PHP DISPLAYING ERRORS

<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);

By using above code, you can manually show / display errors in your php script, irrespective of your server configuration

PHP HIDE ERRORS

<?php
ini_set('display_errors', 0);

By using above code, you can manually hide errors in your php script, irrespective of your server configuration.

ALTERNATE TITLES

How to display errors php

error reporting set php

display errors php

error_reporting example ini_set example

xdebug php example
Show errors php

How to hide errors in php

php manual errors display

Need developers ?

if so, send a message.

thewebblinders@gmail.com

More Programming from our blog

SEARCH FOR ARTICLES