美文网首页
php使用总结

php使用总结

作者: Mr丿black灬 | 来源:发表于2018-07-28 11:44 被阅读0次

    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使用总结

          本文链接:https://www.haomeiwen.com/subject/rhhomftx.html