What does the @ operator mean?

[email protected] (Christian Stocker) Fri, 23 Feb 2001 16:23:55 +0100 (CET)
Newsgroups php.pear
Organization Nomad Online Agents
Message-ID <[email protected]>
Hi

Maybe offtopic, but i see it often in pear-code and i didn't found a
answer in the php manual.

what does the @ mean in front of some functions?

for example in DB.php, there's

@include_once "DB/${type}.php";

what's the difference to just:

include_once "DB/${type}.php";


chregu