Last active
March 29, 2016 19:05
-
-
Save phpdave/aab8e6d3ddbcaad6fe326f64a1a9bcbf to your computer and use it in GitHub Desktop.
show all errors - http://php.net/manual/en/features.commandline.options.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| php -d error_reporting=E_ALL -d display_errors=on -d display_startup_errors=on -r "$foo = ini_get(\"error_reporting\"); var_dump($foo);$foo = ini_get(\"display_errors\"); var_dump($foo);$foo = ini_get(\"display_startup_errors\"); var_dump($foo);" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| error_reporting = E_ALL | |
| display_errors = On | |
| display_startup_errors on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment