$value )
if( $value['eid'] == $eid )
return $value;
return null;
}
function RecommendedEntry_updateIndexFile( $eid_updated, $eid, $direction ) {
$filename = '/var/www/VirtualDomain/kenji00.com/cat/recommend_data';
is_dir( $filename ) || mkdir( $filename );
$filename .= '/'. substr( $eid_updated, -1 );
is_dir( $filename ) || mkdir( $filename );
$filename .= sprintf( '/%d.txt', $eid_updated);
file_exists( $filename ) || touch( $filename );
$fp = @fopen( $filename, 'r+' );
if( $fp ) {
if( flock( $fp, LOCK_EX | LOCK_NB )) {
$ret = '';
$not_found = 1;
while( !feof( $fp ) && ( $buf = fgets( $fp ))) {
list( $_eid, $_n0, $_n1 ) = split( "[\t\r\n]", $buf );
if( $eid == $_eid ) {
$not_found = 0; $direction ? $_n1++ : $_n0++;
}
$ret .= sprintf( "%d\t%d\t%d\n", $_eid, $_n0, $_n1 );
}
if( $not_found )
$ret .= sprintf( "%d\t%d\t%d\n", $eid, 1 - $direction, $direction);
rewind( $fp );
fwrite( $fp, $ret, strlen( $ret ));
}
fclose( $fp );
}
}
function RecommendedEntry_incoming() {
$eid_prev = $_COOKIE['mtrcmnd_eid'];
if( isset( $eid_prev )) {
if( $eid_prev != 492 && RecommendedEntry_getEntryData( $eid_prev )) {
RecommendedEntry_updateIndexFile( 492, $eid_prev, 0 /*incoming_from*/ );
RecommendedEntry_updateIndexFile( $eid_prev, 492, 1 /*outgoing_to*/ );
}
} else {
RecommendedEntry_updateIndexFile( 492, 492, 0 /*incoming_from*/ );
}
}
RecommendedEntry_incoming();
function RecommendedEntry_outgoing() {
setcookie( 'mtrcmnd_eid', 492, time() + 2592000, '/' );
}
RecommendedEntry_outgoing();
function RecommendedEntry_initialize( $mode = 0 ) {
global $RecommendedEntry_table;
$RecommendedEntry_table = array();
$filename = '/var/www/VirtualDomain/kenji00.com/cat/recommend_data/'. substr( '492', -1 ). '/492.txt';
$fp = @fopen( $filename, 'r' );
if( $fp ) {
if( flock( $fp, LOCK_SH | LOCK_NB )) {
while( !feof( $fp ) && ( $buf = fgets( $fp ))) {
list( $_eid, $_n0, $_n1 ) = split( "[\t\r\n]", $buf );
if( 492 == $_eid ) continue;
else if( $mode == 1 ) $RecommendedEntry_table{$_eid} = $_n0;
else if( $mode == 2 ) $RecommendedEntry_table{$_eid} = $_n1;
else $RecommendedEntry_table{$_eid} = $_n0 + $_n1;
}
arsort( $RecommendedEntry_table, SORT_NUMERIC );
}
fclose( $fp );
}
}
function RecommendedEntry_GetEntry( $_index ) {
global $RecommendedEntry_table;
foreach( $RecommendedEntry_table as $eid => $count ) {
if( --$_index ) continue;
$entry = RecommendedEntry_getEntryData( $eid );
if( $entry )
$entry['count'] = $count;
return $entry;
}
}
?>
流行 - 養猫日記
最近、流行に乗り遅れている。
まァ、前から全然流行に敏感ではなかったけどネ。
でも、会社の同僚も、友人も、私の周りの人がどんどん巻き込まれていくのに、
一人だけ取り残されたようで、淋しいとさえ感じてしまう。
そして、
とうとう彼までも先週日曜日からすっかりこの流行の虜に・・・
あぁ、私も罹らないかな?インフルエンザに・・・
彼はもう4日も経つのに、全然よくならない。
一応お医者さんにも見てもらって、薬飲んでるんだけど、
毎日高熱を出して、「ウーウー」呻ってる。
見ているこっちの方がつらい。
しかも、仕事も一日しか休めなかった。
どうせなら、私が病気になった方がよかったのに・・・
優しくしてもらえるし、会社休めるし?
いえいえ、別に会社休みたくて、病気になりたいってわけじゃあ、ないですよ?(^^;;
だって、たとえなったとしても、今の時期、休ませてくれそうもないのだから、
残念!!
(T_T)
ハァ~、どこか、旅に出たいな・・・
コメントする