這MySQL物件可以以空間換時間
提供資料庫快取,減少等待
http://www.ziddu.com/downloadfile/3252813/mysql.class.rar.html
2009年1月21日 星期三
2009年1月20日 星期二
MySQL query cache
最近想弄一個自己的MySQL Class
在找資料時發現有人已經寫好
所以就不用自己動手了
[sql tech.] 筆記 - 對你的 Query 作快取
[php tech.] mysql 自製類別 (mysql.class.phpm)
[php tech.] mysql 自製類別 (mysql.class.phpm)
在找資料時發現有人已經寫好
所以就不用自己動手了
[sql tech.] 筆記 - 對你的 Query 作快取
[php tech.] mysql 自製類別 (mysql.class.phpm)
[php tech.] mysql 自製類別 (mysql.class.phpm)
判斷是否在時間範圍內
/***************
判斷是否在時間範圍內
***************/
//time()函式會回傳UNIX時間戳記
//strtotime()可將時間字串轉為UNIX時間戳記
$start = "2009-1-31";
$end = "2009-2-14";
$ustart = strtotime($start);
$uend = strtotime($end);
$now=time();
if($now > $ustart && $now < $uend)
{
echo '在時間範圍內';
}else{
echo '不在時間範圍內';
}
判斷是否在時間範圍內
***************/
//time()函式會回傳UNIX時間戳記
//strtotime()可將時間字串轉為UNIX時間戳記
$start = "2009-1-31";
$end = "2009-2-14";
$ustart = strtotime($start);
$uend = strtotime($end);
$now=time();
if($now > $ustart && $now < $uend)
{
echo '在時間範圍內';
}else{
echo '不在時間範圍內';
}
訂閱:
文章 (Atom)