time()得到的數值是1970-1-1到現在的秒數,strtotime("now")也是,兩個值是相同的。
thinkphp學習
header('content-type:text/html;charset=utf-8');echo "今天:".date("y-m-d")."
";echo "昨天:".date("y-m-d h:i:s",strtotime("-1 day")), "
";echo "明天:".date("y-m-d",strtotime("+1 day")). "
";echo "一周後:".date("y-m-d",strtotime("+1 week")). "
";echo "一周零兩天四小時兩秒後:".date("y-m-d g:h:s",strtotime("+1 week 2 days 4 hours 2 seconds")). "
";echo "下個星期四:".date("y-m-d",strtotime("next thursday")). "
";echo "上個周一:".date("y-m-d",strtotime("last monday"))."
";echo "乙個月前:".date("y-m-d",strtotime("last month"))."
";echo "乙個月後:".date("y-m-d",strtotime("+1 month"))."
";echo "十年後:".date("y-m-d",strtotime("+10 year"))."
";echo "now的時間戳:".time()."
";
/** * php判斷乙個日期是不是今天 */
//擬設乙個日期
$a = '2016-05-15 10:10:10';
//轉換為時間戳
$a_ux = strtotime($a
);//
轉換為 yyyy-mm-dd 格式
$a_date = date('y-m-d',$a_ux
);//
獲取今天的 yyyy-mm-dd 格式
$b_date = date('y-m-d');
//使用if當作字串判斷是否相等
if($a_date==$b_date
)else
?>
判斷使用者今天第一次登陸:
每次登陸表裡記錄乙個時間戳,代表上次登陸時間
再次登陸的時候判斷如果不是今天的話就表示第一次登陸
php strtotime函式的巧用
strtotime是乙個非常強大的時間戳函式 將任何英文文字的日期時間描述解析為 unix 時間戳 例如 獲取前乙個月的對應時間戳strtotime 1 month 下乙個月則對應為strtotime 1 month 獲取前一天對應的時間戳strtotime 1 day 明天則對應為strtotim...
PHP strtotime函式的具體應用方法
實現功能 獲取某個日期的時間戳,或獲取某個時間的時間戳。php strtotime函式將任何英文文字的日期時間描述解析為unix時間戳 將系統時間轉化成unix時間戳 一,獲取指定日期的unix時間戳 strtotime 2009 1 22 示例如下 echo strtotime 2009 1 22...
DA14580 DA14585 藍芽除錯記錄
1.燒寫otp image 你的 你會發現 並沒有燒寫完0x40000到0x4ffff的位址內容.2.在otp header介面下read from memory 讀出原有header配置資訊,直接在上面修改以下項 address 0x47f00 value yes address 0x47f04 ...