php使用总结

1.时间比较:使用时间戳 strtotime 函数,算出时间戳,直接进行大小比较

$startTime = strtotime($year . "-" . "01-01 00:00:00");

$endTime = strtotime($year  . "-" . "12-31 23:59:59");

$now = strtotime($value["TotalTime"]);

if($now >= $startTime & $now <= $endTime){...}


2.array_push,数组追加,如果想要给追加的数据追加的字段的话

$value["month"] = substr($TotalTime, 5,7);    //month为追加数据的字段名称,

array_push($value,$value["month"] );

array_push($data,$value);


3.substr字符串截取函数


 substr($TotalTime, 5,7)      //第五位截取到第七位

你可能感兴趣的:(php使用总结)