InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of @ in PHP? |
|
Answer» In PHP, @ is used for suppressing error messages. If any RUNTIME error OCCURS on the LINE which CONSISTS @ symbol at the beginning, then the error will be handled by PHP. |
|