if文を突破されるかもな時とか。
<?php
function check_the_exception($file, $line, $string) {
$error_log = fopen("/Home/MyName/public_html/error_log/error.txt","a");
fwrite($error_log, '[' . $this->check_the_date() . '] ' . $string . ': ' . $file . ' on line ' . $line . "\n");
fclose($error_log);
}
?>