一覧 |
コード登録画面
カウンタクラス [ 2004年12月03日 ]
<?php
/**
* カウンタクラス
*
* カウンタをクラス化してます。
* ファイル名を渡して初期化するのでこれ1つで複数のカウンタが作成可能
*
* 作成者:
* KJ
*
* 使い方:
* // カウンタ1
* $CNT1 = new Counter("c1.txt");
* $CNT1->view();
*
* // カウンタ2
* $CNT2 = new Counter("c2.txt");
* $CNT2->view();
*
*/
// +----------------------------------------------------------------------+
// | PHP version 4 |
// +----------------------------------------------------------------------+
// | Authors: KJ |
// +----------------------------------------------------------------------+
//
// カウンタクラス
/**
* クラスの説明
*
* @package Counter
* @author KJ
* @since PHP 4.0
*/
class Counter {
var $_filename;
var $_count;
function Counter($filename)
{
$this->_filename = $filename;
$fp = @fopen($this->_filename, "r+") or die("can't open datafile [$filename]");
$this->_count = fgets($fp, 32);
if ($this->_count == "") {
$this->_count = 0;
}
$this->_count += 1;
rewind($fp);
flock($fp, 2);
fputs($fp, $this->_count);
fclose($fp);
}
function view()
{
echo $this->_count;
}
}
/**
*
* サンプル
*
* $CNT = new Counter("c1.txt");
* $CNT->view();
*
*/
?>
投稿者:KJ<phpedit@hotmail.com>
//phpspot.net/