PHP Error Control Operators
PHP Error Control Operators is the at symbol(@). The file does not exist, and an error is generated, but the at symbol prevents the error from displaying and produces the following result:
Operator Name | Opertor |
---|---|
Error Control Operators | @ |
Example for PHP Error Control Operators
<?php @include_once “test_file” ; echo ‘Text to follow the include’; ?>