我的日期格式有问题,这是从SQL数据库获取的值并传递给用户的表单,作为回报,当用户将其设置回存储到数据库中时,格式就不同了。
$sql = mysql_query("SELECT * FROM $memberTable WHERE id='11' LIMIT 1"); //checking from SQL
$sqlcheck = mysql_fetch_assoc($sql); //Pass each value
$dob = strftime("%Y-%B-%d", strtotime($sqlcheck['dob']));
//format from databases 2000-10-30 into 2000-October-30
$dob = explode("-", $dob);
// break into day,month,year for form to fill in
$dob = $dob[0].'-'.$dob[1].'-'.$dob[2];
// after user fill in combine together for user to input back to databases
$dob = strftime("%Y-%m-%d", strtotime($dob));
//formatting back into databases format, 2000-October-30 into 2000-10-30
//The main problem here is the output is "2000-10-02"
我想知道为什么日值变成02而不是30? 我正在使用的格式代码有问题吗? 请帮助。
答案 0 :(得分:3)
尝试使用date
功能
echo $dob = date("Y-m-d", strtotime($dob));
最好像(可选)
一样使用$dob = strtotime("Y-B-d", strtotime($sqlcheck['dob']));
//format from databases 2000-10-30 into 2000-October-30
$dob = explode("-", $dob);
// break into day,month,year for form to fill in
$dateofbirth = $dob[0].'-'.$dob[1].'-'.$dob[2];
echo date("Y-m-d", strtotime($dateofbirth));
答案 1 :(得分:1)
@你只是没有为strtotime()
函数创建写日期格式,你可以这样做: -
$date='2000-October-30';
$dob = explode("-", $date);
$dob = $dob[2].'-'.$dob[1].'-'.$dob[0];
echo $dob = strftime("%Y-%m-%d", strtotime($dob));
您可以检查php日期和时间格式here
答案 2 :(得分:0)
如果格式为“2013-Oct-30
”,strtotime方法会正确计算日期
但是当日期格式为“2013-October-30
”
当您一起构建日期时,只需在月份中执行一个子字符串即可获得该月的前3个字符,这样可以解决您的问题。
$dob = $dob[0].'-'. substr($dob[1], 0, 3) .'-'.$dob[2];
//用户填写后组合在一起,供用户输入回数据库