View Single Post
Old 03-19-2009, 07:12 PM   #5 (permalink)
nefus
The Contributor
 
nefus's Avatar
 
Join Date: Nov 2007
Location: Nashville, TN
Posts: 66
Thanks: 20
nefus is on a distinguished road
Default hmmm

I ran into something today that looks a tiny bit different.

Any real difference between

Code:
if($result){
    //do something with the result
}
and this

Code:
if(@$result){
    //do something with the result
}
Why use the @ symbol?
nefus is offline  
Reply With Quote