从给定日期获取月份 php

发布于 2024-12-03 10:14:13 字数 647 浏览 1 评论 0原文

给定此代码来检索日期自日期至

<dl>
        <dt><label for="calendar">Date From:</label></dt>
     <dd><input type="text" name="timestamp" id="calendar1" class="calendarFocus" size="32" maxlength="128" /></dd>
    </dl>

   <dl>
        <dt><label for="calendar">Date To:</label></dt>
        <dd><input type="text" name="timestamp1" id="calendar1" class="calendarFocus" size="32" maxlength="128" /></dd>
    </dl>

我怎样才能只获取月份?

**这是上面时间戳中日期的输出格式:13/09/2011 10:05...谢谢...

given this code to retrieve the date from and date to:

<dl>
        <dt><label for="calendar">Date From:</label></dt>
     <dd><input type="text" name="timestamp" id="calendar1" class="calendarFocus" size="32" maxlength="128" /></dd>
    </dl>

   <dl>
        <dt><label for="calendar">Date To:</label></dt>
        <dd><input type="text" name="timestamp1" id="calendar1" class="calendarFocus" size="32" maxlength="128" /></dd>
    </dl>

how can I get only the month?

**this is the Output format of the date above in timestamp: 13/09/2011 10:05... thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乞讨 2024-12-10 10:14:14

date('M', strtotime( $timestamp ));

M 替换为以下任意项:

  • F -- 的完整文本表示一个月,例如一月或三月。 (一月十二月)
  • m -- 月份的数字表示形式,带前导零 (< strong>01 到 12)
  • M -- 月份的简短文本表示,三个字母(Jan< /strong> 至12 月
  • n -- 月份的数字表示形式,不带前导零112
  • t< /code> -- 给定月份的天数2831

date('M', strtotime( $timestamp ));

Swap M with any of the following:

  • F -- A full textual representation of a month, such as January or March. (January through December)
  • m -- Numeric representation of a month, with leading zeros (01 through 12)
  • M -- A short textual representation of a month, three letters (Jan through Dec)
  • n -- Numeric representation of a month, without leading zeros (1 through 12)
  • t -- Number of days in the given month (28 through 31)
生来就爱笑 2024-12-10 10:14:14
 $date_from = $_POST['timestamp'];
 $month_from = substr($date_from,strpos($date_from,'/'),2);
 $date_to = $_POST['timestamp1'];
 $month_to = substr($date_to,strpos($date_to,'/'),2);
 $date_from = $_POST['timestamp'];
 $month_from = substr($date_from,strpos($date_from,'/'),2);
 $date_to = $_POST['timestamp1'];
 $month_to = substr($date_to,strpos($date_to,'/'),2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文