php如何根据时间戳判断周几

php根据时间戳判断周几的方法:可以利用date()函数来进行判断。date()函数可以把时间戳格式化为可读性更好的日期和时间,具体使用方法如:【date("Y/m/d")】。

函数介绍:

(推荐教程:php图文教程)

PHP date() 函数可把时间戳格式化为可读性更好的日期和时间。

函数语法:

string date ( string $format [, int $timestamp ] )

参数:

  • format 必需。规定时间戳的格式。

  • timestamp 可选。规定时间戳。默认是当前的日期和时间。

(视频教程推荐:php视频教程)

可用字符介绍:

  • d – 代表月中的天 (01 – 31)

  • m – 代表月 (01 – 12)

  • Y – 代表年 (四位数)

  • w – 星期中的第几天,数字表示。0(表示星期天)到 6(表示星期六)

代码实现:

function getTimeWeek($time, $i = 0) {
  $weekarray = array("一", "二", "三", "四", "五", "六", "日");
  $oneD = 24 * 60 * 60;
  return "周" . $weekarray[date("w", $time + $oneD * $i)];
}
$time=time();
echo getTimeWeek($tiem);

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » php如何根据时间戳判断周几