代码如下 | 复制代码 |
function getTime() { $time=""; //上午时间 $h1=date("h")>12?(date("h")-12):date("h"); //下午时间 $h2=((date("h")+12)>=24)?date("h"):(date("h")+12); //判断是否为上午 return $time; } |
时间: 2024-09-28 10:33:30
代码如下 | 复制代码 |
function getTime() { $time=""; //上午时间 $h1=date("h")>12?(date("h")-12):date("h"); //下午时间 $h2=((date("h")+12)>=24)?date("h"):(date("h")+12); //判断是否为上午 return $time; } |