I'm learning object oriented php. I've come across some code I don't fully understand. This code is within a class.
1) code that uses @. For example:
$this->image = @imagecreatefromgif($filename);
Can some one explain the uses of @.
2) Also it looks like the script is declaring variables in a way i'm not used to (the $var way).
For example:
$this->ext = $size['mime'];
$ext is not declared before this code is used, but it used after it. Does this create an $ext variable within the object?
Thanks guys!!