php – DateTime修改当前第一天的字符串

前端之家收集整理的这篇文章主要介绍了php – DateTime修改当前第一天的字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在寻找一年中第一天的DateTime修改字符串(现在是2011年1月1日).我尝试了以下方法
<?PHP

$time = new DateTime();

// works as expected,the first day of the current month
$time->modify('first day of this month');
echo $time->format('c')."\n";


// this doesn't work. I also tried several other ways
$time->modify('first day of january');
echo $time->format('c')."\n";

>

我知道有其他方法可以检索日期,但我搜索字符串的DateTime-> modify()没有其他解决方案.

您也应该指定年份,如您在此示例中所示:
"first day of January 2008"

official doc.

更新:适用于PHP版本> = 5.3.6

原文链接:https://www.f2er.com/php/138626.html

猜你在找的PHP相关文章