Looie
02-02-2008, 09:58 PM
What does an '@' mean before a function, like @fsockopen();
![]() | View Full Version : Quick PHP Question Looie 02-02-2008, 09:58 PM What does an '@' mean before a function, like @fsockopen(); Adam-AEC 02-02-2008, 10:32 PM It hides error messages from being shown to the browser if the function returns an error. Looie 02-02-2008, 11:00 PM Ah, I see. Thanks for the quick reply. |