function report_error($file, $line, $message) {
   echo "An error occured in $file on line $line: $message.";
}
report_error(__FILE__,__LINE__, "Something went wrong!");
An error occured in /home/macmanu/public_html/coursWebProgramming/examples/base/constants.php on line 17: Something went wrong!.