如何获取最后一个月的使用php

前端之家收集整理的这篇文章主要介绍了如何获取最后一个月的使用php前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How to find the last day of the month from date?23
如何使用PHP获取一个月的最后一天?
<?PHP
     echo date('?-?-?');
?>
<?PHP
$day=new DateTime('last day of this month'); 
echo $day->format('M jS');
?>
原文链接:https://www.f2er.com/php/132259.html

猜你在找的PHP相关文章