I'm trying to configure PHPBB2 to integrate it with my own code. And I'm embarassed to say there's some syntax in the bulletin board that I've never seen before
$result = @mail($to, $this->subject, preg_replace("#(?<!\r)\n#s", "\n", $this->msg), $this->extra_headers);
I'm specifically wondering about the @mail() portion.
What does '@' in front of a fucntion name mean? It's hard for me to find an answer on this because searching in google on the character '@' isn't possible.
Thanks