Why you should not use @ sign in PHP
Written on October 22, 2010 – 8:05 am | by Stan Kuhn |For those who don’t know @ is error control operator. Taken from PHP documentation “When prepended to an expression in PHP, any error messages that might be generated by that expression will be ignored”. In other words error message won’t be printed out. There are some situations when @ sign might be helpful e.g. include() [...]

