时间随手记
Posted able-woman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间随手记相关的知识,希望对你有一定的参考价值。
1、实现插入预定时间戳功能
$datas[‘time‘] = strtotime( str_replace( array(‘年‘,‘月‘,‘日‘) , array(‘-‘,‘-‘,‘‘) , $datas[‘time‘]) );
2、实现只能预约商品一次的功能
$checkUser = $this->where(array(‘uid‘ =>$datas[‘uid‘],‘product_id‘=>$datas[‘product_id‘], ‘state‘=>1))->getField(‘id‘);
if($checkUser){
$this->error = ‘预约过此商品‘;
return false;
}
3、/** 获取可取消时间 */
$canceldays = M(‘Conf‘)->where(array(‘name‘ => ‘canceldays‘))->getField(‘value‘);
/** @var 获取可取消时间 $cancelTime */
$list[‘cancelTime‘] = date(‘Y年m月d日 H:i‘ ,$showinfo[‘time‘] - $canceldays * 86400);
4、
以上是关于时间随手记的主要内容,如果未能解决你的问题,请参考以下文章