PHP - Error and Exception Handling
What is the problem with this PHP code snippet?
<?php
error_reporting(E_ALL);
trigger_error('Deprecated feature', E_DEPRECATED);
trigger_error('User notice', E_USER_NOTICE);
?>