When you @ "at" a command (supress error messaging) within a function, is
the scope of the @ within the function?
Example:
CloseODBC(1);
# is error message supressed here too?
function CloseODBC($connection_id)
{
# error messaging supressed
@odbc_close($connection_id);
}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
- Re: [PHP] @ Scope Karl J. Stubsjoen
- Re: [PHP] @ Scope Web master
- Re: [PHP] @ Scope Christian Reiniger
- RE: [PHP] @ Scope Maxim Maletsky
- Re: [PHP] @ Scope Christian Reiniger

