PHP bu iki fonksiyon çağrıları arasındaki fark nedir?
init_get($somevariable);
@init_get($somevariable);
Teşekkürler.
Bu hataları ve uyarıları susturur. Bkz Error Control Operators.
As already answered the @ will stop the error (if any) from showing up.
In terms of performance this is not recommend.
Ne yapıyor php:
Eğer kullanımını gösteren herhangi bir hata istemiyorsanız:
error_reporting (0);
Ya da sadece hatasız kod yazmak için: P
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.