What does the @ in the syntax @ mean?
Hi, you can be more specific? where look you this?
It's used to use @ for email, pointer address, or , in php, to suppress standard output...
From Weedpacket's entry on Debugging 101 thread:
When you tack an @ to the beginning of a function call, you prevent PHP from reporting any error messages the call generates. This feature was intended for use by people who want to write their own error-handling routines
Thanks for the posts.