Multiple choice php

In PHP, the error control operator is ________.

  1. *

  2. %

  3. @

  4. &

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The @ symbol in PHP is the error control operator - when prepended to an expression, it suppresses error messages for that expression. This allows you to handle errors gracefully in your code. However, it's generally recommended to use proper error handling instead of suppressing errors.