1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

error_log風味のファイル書き込み

Posted at
function elog($obj)
{
    $filePath = '/var/log/php';
    $date = new DateTime();
    $result = file_put_contents($filePath, $date->format('[Y-m-d H:i:s] ') . var_export($obj, true) . "\n", FILE_APPEND);

    if (!$result) {
        error_log($filePath . 'への書き込みに失敗しました');
        error_log(var_export($obj, true));
    }
}
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?