File "Log.php"
Full path: /www/ansys/qgis/2015_crun/messages/class/Log.php
File size: 1.09 KiB (1113 bytes)
MIME-type: text/x-php
Charset: utf-8
<?php
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
// ログ関連
// クラス名: cLog
// 備考 :
// 更新 : 2012/10/24 KMK-Teraoka
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
class Log
{
private $mFp;
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
// コンストラクタ
// 更新 : 2012/10/24 KMK-Teraoka
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
public function __construct($filePath_)
{
$this->mFp = fopen($filePath_, "a");
fwrite($this->mFp, date("Y-m-d H:i:s"). "===============================\n");
}
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
// ログを書き込む
// 更新 : 2012/10/24 KMK-Teraoka
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
public function write($value_)
{
fwrite($this->mFp, $value_);
}
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
// デクストラクタ
// 更新 : 2012/10/24 KMK-Teraoka
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
public function __destruct()
{
fwrite($this->mFp, "==================================================\n");
fclose($this->mFp);
}
}
?>