[PHP] @ at the begining

2001-04-09 Thread Fernando Buitrago
Hi. Please, what is the @ caracter in this case? @$var. What meens? thanks. Fer -- 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] @ at the begining

2001-04-09 Thread elias
Hey, the '@' is an error control operator. search php manual for this 'Error Control Operators' it allows you to trap error and warning messages. -elias http://www.kameelah.org/eassoft ""Fernando Buitrago"" [EMAIL PROTECTED] wrote in message 9arl15$8al$[EMAIL

Re: [PHP] @ at the begining

2001-04-09 Thread Mukul Sabharwal
Hey, @ simply means to suppress warnings, or errors! @functioncall(); would simply not display an error or warning, incase it caused one or more. = To find out more about me : http://www.geocities.com/mimodit My bookmarks are available @ http://mukul.free.fr

Re: [PHP] @ at the begining

2001-04-09 Thread Philip Olson
Hi Fernando, Have a look here : http://www.php.net/manual/en/features.error-handling.php http://www.php.net/manual/en/language.operators.errorcontrol.php regards, philip On Mon, 9 Apr 2001, Fernando Buitrago wrote: Hi. Please, what is the @ caracter in this case? @$var. What