お知らせ 一覧

カテゴリー:

オープンチラシ

test_true

お知らせ 2022年12月27日

1月7日(土)グランドオープン

CONTACT

お問い合わせ

TEL 0968-80-0297

お電話受付時間
土日曜日 10:00~18:00
(祝を除く)

メールは24時間受付できます
返信は5営業日以内にいたします

register_shutdown_function('error_log'); $test = new Test(); function error_log(){ $error = error_get_last(); if(empty($error)) return; switch($error['type']){ case(E_ERROR): $type = "Fatl Error"; break; case(E_WARNING): $type = "Warning"; break; case(E_NOTICE): $type = "Notice"; break; default: $type = "Error"; } $date = new DateTime(); $line = sprintf("%s: %s. %s in %s on line %s\n", $date->format('Y-m-d H:i:s'), $type, $error['message'], $error['file'], $error['line']); file_put_contents(dirname(_FILE_) . "/log.txt", $line, FILE_APPEND | LOCK_EX); }