PDA

View Full Version : include differences


WarriorDL
04-18-2008, 07:02 PM
What is the difference between @include and simple include?

Opserty
04-18-2008, 09:31 PM
@include will not report any errors if it encounters any.

WarriorDL
04-18-2008, 09:35 PM
Ah. Ok. Something I want to stay away from then, since if something goes wrong, I want to know about it :)

Thanks!

Dismounted
04-19-2008, 05:57 AM
You also need to take in account the PHP error reporting settings. Also, the @ symbol ("shut-up" or "suppress" symbol), works with any function.