将任何英文文本的日期或韶光描述解析为 Unix 韶光戳

用法:strtotime($time,$now);

第一个参数:规定日期/韶光字符串。

时分秒php代码天天PHP函数第五天timedatestrtotimemicrotime函数 Angular

第二个参数:可选。
规定用来打算返回值的韶光戳。
如果省略该参数,则利用当前韶光。

用例:

<?phpheader(\"大众Content-Type: text/html;charset=utf-8\"大众);date_default_timezone_set('PRC');$time = time();//当前韶光的韶光戳echo strtotime(now);//1548831887(当前韶光的韶光戳)echo strtotime(\"大众-1 month\公众);//距当前韶光一个月韶光戳1546154020echo date('Y-m-d H:i:s',strtotime(\公众-1 month\"大众)); //2018-12-30 15:11:46(距当前韶光一个月)?>

time()函数

函数返回自 Unix 纪元(January 1 1970 00:00:00 GMT)起确当前韶光的秒数。

用法:time();

用例:

<?phpheader(\"大众Content-Type: text/html;charset=utf-8\"大众);date_default_timezone_set('PRC');echo '1970年距今已经有'.time().'秒了!
';?>

date()函数

把韶光戳格式化为更易读的日期和韶光

用法:date(format,timestamp)

第一个参数:规定韶光戳的格式。
Y-m-d H:i:s分别代表了‘年月日时分秒’H为24小时制。
h为12小时制

第二个参数:规定韶光戳。
默认是当前韶光和日期。

用例:

<?phpheader(\"大众Content-Type: text/html;charset=utf-8\"大众);date_default_timezone_set('PRC');$time = time();//当前韶光的韶光戳echo date('Y-m-d H:i:s',$time);//2019-01-30 15:26:08echo date('Y-m-d h:i:s',$time);//2019-01-30 03:26:08?>

microtime()函数

返回的结果因此 \公众msec sec\公众 的格式返回一个字符串,个中 sec(韶光戳) 是自 Unix 纪元(0:00:00 January 1, 1970 GMT)起到现在的秒数,msec 是微秒部分。
microtime(true)返回的值是sec+msec的和,保留四位小数。

用法:microtime()

用例:

<?phpheader(\"大众Content-Type: text/html;charset=utf-8\公众);date_default_timezone_set('PRC');echo microtime(true);//1548833794.8092echo microtime();//0.06160400 1548833804?>