欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP根据时间戳返回星期几_PHP教程

程序员文章站 2022-06-07 11:39:39
...

02 /**

03 * 根据时间戳返回星期几

04 * @param string $time 时间戳

05 * @return 星期几

06 */

07 function weekday($time)

08 {

09 if(is_numeric($time))

10 {

11 $weekday = array('星期日','星期一','星期二','星期三','星期四','星期五','星期六');

12 return $weekday[date('w', $time)];

13 }

14 return false;

15 }

16 var_dump(weekday($_SERVER['REQUEST_TIME']));

17 ?>


摘自:尐桀的博客

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478593.htmlTechArticle?php 02 /** 03 * 根据时间戳返回星期几 04 * @param string $time 时间戳 05 * @return 星期几 06 */ 07 function weekday($time) 08 { 09 if(is_numeric($time)) 10 { 11 $we...