What is the difference between these two function calls in PHP?
init_get($somevariable); @init_get($somevariable);
http://www.faqts.com/knowledge_base/view.phtml/aid/18068/fid/38
All PHP expressions can be called with the "@" prefix, which turns off error reporting for that particular expression.