File "cLog.php"

Full path: /www/ansys/qgis/2015_crun_t/class/cLog.php
File size: 1.09 KiB (1117 bytes)
MIME-type: text/x-php
Charset: utf-8

Download   Open   Back

<?php
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
//	ログ関連
//	クラス名:	cLog
//	備考	:	
//	更新	:	2012/10/24 KMK-Teraoka
//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
class cLog
{
	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 writeLog($value_)
	{
		fwrite($this->mFp, $value_);
	}
	
	//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
	//	デクストラクタ
	//	更新	:	2012/10/24 KMK-Teraoka
	//-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
	public function __destruct()
	{
		fwrite($this->mFp, "==================================================\n");
		fclose($this->mFp);
	}
}
?>

PHP File Manager