- error_reporting: documentation ( source)
- set_error_handler: documentation ( source)
- strtolower: documentation ( source)
<?php
error_reporting(E_ALL|E_STRICT);
set_error_handler(function($errno, $errstr) { echo "Handler: $errstr\n";});
@strtolower();