是否有一种简单的方法可以更改$month = "July";
,以便$nmonth = 7
(07
也可以。)
我可以做一个案例陈述,但肯定有一个转换功能?
编辑:
我希望我能接受多个答案,因为你们中的两个人基本上都给了我所需要的力量。
$nmonth = date('m',strtotime($month));
这将给出$month
的数值。
谢谢!
答案 0 :(得分:69)
试试这个:
<?php
$date = date_parse('July');
var_dump($date['month']);
?>
答案 1 :(得分:62)
是,
$date = 'July 25 2010';
echo date('d/m/Y', strtotime($date));
m
将月份格式化为其数字表示。
答案 2 :(得分:18)
这里看起来很有趣,凯利给出的代码效果很好,
$nmonth = date("m", strtotime($month));
但是对于2月份,当闰年为30或31,非闰年为29,30,31时,将无法按预期工作。将返回 3 作为月份编号。例如:
$nmonth = date("m", strtotime("february"));
解决方法是,将月份添加为月份,如下所示:
$nmonth = date("m", strtotime("february-2012"));
我从php手册中的comment得到了这个。
答案 3 :(得分:11)
$string = "July";
echo $month_number = date("n",strtotime($string));
返回'7'[月号]
使用date("m",strtotime($string));
输出“08”
对于更多格式,请提供此信息。
http://php.net/manual/en/function.date.php
答案 4 :(得分:5)
你也可以使用这个:
$month = $monthname = date("M", strtotime($month));
答案 5 :(得分:4)
$monthname = date("F", strtotime($month));
F
表示完整的月份名称
答案 6 :(得分:3)
$nmonth = date("m", strtotime($month));
答案 7 :(得分:2)
创建假日期可能最简单,因此您可以使用日期函数。
这里有很好的参考:http://php.net/manual/en/function.date.php
示例:
<?
$month = 7;
$tempDate = mktime(0, 0, 0, $month, 1, 1900);
echo date("m",$tempDate);
?>
答案 8 :(得分:2)
<?php
$monthNum = 5;
$monthName = date("F", mktime(0, 0, 0, $monthNum, 10));
echo $monthName; //output: May
?>
答案 9 :(得分:2)
以上回答很好。这是另一种方法: -
function getMonthNumber($monthStr) {
//e.g, $month='Jan' or 'January' or 'JAN' or 'JANUARY' or 'january' or 'jan'
$m = ucfirst(strtolower(trim($monthStr)));
switch ($m) {
case "January":
case "Jan":
$m = "01";
break;
case "Febuary":
case "Feb":
$m = "02";
break;
case "March":
case "Mar":
$m = "03";
break;
case "April":
case "Apr":
$m = "04";
break;
case "May":
$m = "05";
break;
case "June":
case "Jun":
$m = "06";
break;
case "July":
case "Jul":
$m = "07";
break;
case "August":
case "Aug":
$m = "08";
break;
case "September":
case "Sep":
$m = "09";
break;
case "October":
case "Oct":
$m = "10";
break;
case "November":
case "Nov":
$m = "11";
break;
case "December":
case "Dec":
$m = "12";
break;
default:
$m = false;
break;
}
return $m;
}
答案 10 :(得分:1)
也许与strtotime()
和date()
结合使用?
答案 11 :(得分:1)
使用
date("F", mktime(0, 0, 0, ($month)));
where, $month value will be 1 -> 12
答案 12 :(得分:0)
使用PHP 5.4,您可以将Matthew的答案变为单行:
$date = sprintf('%d-%d-01', $year, date_parse('may')['month']);
答案 13 :(得分:0)
$date = 'Dec 25 2099';
echo date('d/m/Y', strtotime($date));
这会返回01/01/1970
,这意味着php不支持所有日期,它会返回正确的格式化日期,直到Jan 19 2038
,但Jan 20 2038
会返回01/01/1970
答案 14 :(得分:0)
$dt = '2017-Jan-10';
OR
$dt = '2017-January-10';
回音日期('Y-m-d',strtotime($ dt));
回音日期('Y / m / d',strtotime($ dt));
答案 15 :(得分:0)
如果要从字符串名称中获取月份数,则
$month = 'August';
$year = 2019;
echo date('m',strtotime($month.' '.$year));
给08
或者,如果您需要月份的全名,那么
echo date('F')
或者,如果您想输入月份的一半名称,则
echo date('M')
答案 16 :(得分:-2)
我知道这似乎是一个简单的解决方案,但为什么不使用这样的东西
<select name="month">
<option value="01">January</option>
<option value="02">February</option>
<option selected value="03">March</option>
</select>
用户看到二月,但02已发布到数据库