使用用户输入设置Zend_Date Month

时间:2009-10-09 19:51:44

标签: php datetime zend-framework date

我正在寻找一种方法来设置Zend_Date的月份,使用来自用户的字符串(可能是Jan,January等)。例如

$month = strftime("%m", strtotime($month));
$date->set($month, Zend_Date::MONTH);

将获得月份'号码',然后可用于设置Zend_Date月份。有没有办法用Zend_Date做到这一切?

1 个答案:

答案 0 :(得分:3)

$month = 'January';  // Or 'Jan' or 1 or '1' or '01'
$date->setMonth($month);