strtotime 使用注意事項

2022-07-23 03:24:14 字數 861 閱讀 9286

<?

$str = 'sat may 14 22:35:44 +0800 2011';

$current_timezone = date_default_timezone_get();

$strttime = strtotime($str);

?>

未設定時區前

時間字串

<?=$str?>

當前時區

<?=$current_timezone?>

字元轉化後日期格式('r')

<?=date('r',$strttime)?>

字元轉化後日期格式('h:i:s')

<?=date('h:i:s',$strttime)?>

<?

//設定時區

date_default_timezone_set('asia/shanghai');

$l_current_timezone = date_default_timezone_get();

$l_strttime = strtotime($str);

?>

設定時區後

時間字串

<?=$str?>

當前時區

<?=$l_current_timezone?>

字元轉化後日期格式('r')

<?=date('r',$l_strttime)?>

字元轉化後日期格式('h:i:s')

<?=date('h:i:s',$l_strttime)?>

<?

//使用完成後,還原到系統預設的設定

date_default_timezone_set($current_timezone);

?>

LCD使用注意事項

a.lcd使用注意事項 1.確保是在電源關閉的狀態下拔插線纜 2.對液晶屏進行固定安裝時,注意使整個液晶屏保持平整,避免外力導致液晶屏 彎曲 扭曲 3.一定要小心液晶屏的表面偏光片,避免被堅硬物體劃傷 決不能將堅硬物品置於液晶屏之上 4.如果水滴長時間滯留在液晶模組上,可能導致變色或出現汙斑,所以務...

using使用注意事項

在c 的語法中,using關鍵字有幾個作用 一 匯入乙個命名空間,以便於能使用該命名空間下的相關型別定義,如下的例項 中,將匯入system.text下的相關型別定義 二 為乙個命名空間設定別名,這種情況下並不會匯入對應命名空間下的型別定義,如例項 為system.text定義了別名systext,...

LCD使用注意事項

a.lcd使用注意事項 1.確保是在電源關閉的狀態下拔插線纜 2.對液晶屏進行固定安裝時,注意使整個液晶屏保持平整,避免外力導致液晶屏 彎曲 扭曲 3.一定要小心液晶屏的表面偏光片,避免被堅硬物體劃傷 決不能將堅硬物品置於液晶屏之上 4.如果水滴長時間滯留在液晶模組上,可能導致變色或出現汙斑,所以務...