在PHP 中使用Date_modify 方法確定當前月份的第一天
在Web 開發中,通常會尋找當前月份的第一月份的第一天當月是一項常見任務。本指南將讓您清楚了解如何使用 date_modify 方法來完成此操作。
使用一周的第一天示例作為指導
正如您已成功使用date_modify 方法來確定本週的星期一,讓我們使用類似的方法來完成尋找當月第一天的任務。
取得當月第一天的PHP 程式碼
以下PHP 程式碼片段將傳回目前月份的第一天:
<code class="php"><?php // Create a DateTime object representing the current date $now = new DateTime(); // Modify the DateTime object to represent the first day of the current month $firstOfMonth = $now->modify('first day of this month'); // Output the first day of the current month echo $firstOfMonth->format('Y-m-d'); ?></code>
此程式碼建立一個表示目前日期的DateTime 物件。然後,它使用修改方法將物件移動到當月的第一天。最後,它以指定的格式輸出該月的第一天。
以上是如何在 PHP 中使用「date_modify」來取得目前月份的第一天?的詳細內容。更多資訊請關注PHP中文網其他相關文章!