View Single Post
  #47 (permalink)  
Old 05-08-2008, 02:38 AM
senraj senraj is offline
D-Web Master
 
Join Date: Jul 2007
Posts: 418
senraj is on a distinguished road
Post Re: Operations in PHP

Hi,

The Silence Operator

The operator @ silences error messages during the evaluation process of an
expression.

for example:
-------------
with out silence operator
$obj = new sample();
$obj -> example();
with silance operator
@$ob->example();
__________________
Regards,
Senraj.A
Reply With Quote