I have recently upgraded PHP 5.5.* to PHP 5.6.13.
I need to display all the errors in PHP scripts if there are any. So I have uncommented the following code in /etc/php5/cli/php.ini
error_reporting
Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
Development Value: E_ALL
Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
And it is showing the the error "unexpected '&' on line no 107".
I know there is something wrong with in my code and the nothing is displaying in browser while executing it.