At 23:01 2002-09-24 +0200, Wolfgang Schneider wrote:
>Hello,
>
>I have a question about a syntax I had not noticed until now and I
>could not find an explanation for the inclusion of the character "@"
>in from of function statment ...
>
>What's the difference between these:
>(1) @include("../lang/english/trad4all.inc.php");
>(2) include("../lang/english/trad4all.inc.php");
>
>What does the "@" indicate in fron of the "include" ? Anyone have any
>clue?
>God bless you with His grace and peace
>Wolfgang

the at (@)-sign in front of a function surpresses error messages from it afaik.
so if you tried to include a missing include file, an @-sign in front of 
your include would simply run silent even if it was unable to include the 
specified file.


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to