what is the @'s purpose in PHP -


possible duplicate:
what use of @ symbol in php?

i been working php right question pops in mind @ sign means? saw before method or functions calls. , try remove them there no changes. can explain me purpose of @ sign??

 @imagecreatefromjpeg($file); 

simply put, @ allows suppress errors arise call function.


Comments

Popular posts from this blog

How can I edit my VIM config so that Vim treats ".ejs" files the same as it currently treats my html files? -

Python __call__ special method practical example -