函数
~~~
function getTimeWeek($time, $i = 0) {
$weekarray = array("一", "二", "三", "四", "五", "六", "日");
$oneD = 24 * 60 * 60;
return "周" . $weekarray[date("w", $time + $oneD * $i)];
}
~~~
使用
~~~
$time=time();
echo getTimeWeek($tiem);
~~~
前端显示
~~~
今天:
{$time|getTimeWeek}//星期
{$time|date="m月d日",###}//几月几日
明天:
{php}echo (getTimeWeek($time,1));{/php}
{$time+ 24 * 3600 - 1|date="m月d日",###}
后天:
{php}echo (getTimeWeek($time,2));{/php}
{$time+(24 * 3600 - 1)*2|date="m月d日",###}
~~~
~~~
if(!function_exists('getTimeWeek')){//此行作用套个‘马甲’,当没有函数时执行,有效减少错误
function getTimeWeek($time, $i = 0) {
$weekarray = array("日", "一", "二", "三", "四", "五", "六");
$oneD = 24 * 60 * 60;
return "周" . $weekarray[date("w", $time + $oneD * $i)];
}
}
~~~
- 心灵笔记
- tp5在编辑器一行一个添加信息
- 出库入库处理
- 出库
- 入库
- 后台控制器
- tp5加载更多-流加载
- 配件列表
- Parts.php
- add.html
- edit.html
- 图片管理
- controller
- 1.imgfile.php
- 2.imgfiletag.php
- view
- imgfile
- 1.index.html
- 2.show.html
- 3.simple.html
- 4.more.html
- 5.edit.html
- 6.deittag.html
- imgfiletag
- add.htm
- edit.htm
- model
- imgfile.php
- imgfiletag.php
- api
- upload.php
- js
- admin.js
- tp5整合百度编辑器多图上传
- 1.html代码
- 2.js代码
- 3.api代码
- 4.extend中的拓展代码
- tp5删除图片同时删除服务器图片
- 实用字段的的添加更新
- 根据时间戳获取未来几天星期几
- curl
- 城市按字母排版
- 聚合查询及渲染,处理产品首页
- 过滤字段
- 风控
- 查询id是否在数组里
- 判断更新还是新增操作
- tp5使用引入php文件