次のようなクエリ文字列に誕生日があります。
?birthdate=1991-01-01
そして私のコードは次のとおりです:
$customer->setWebsiteId(Mage::app()->getWebsite()->getId());
$customer->loadByEmail($email);
if (!$customer->getId()) {
$customer->setEmail($email);
$customer->setFirstname($name);
$customer->setLastname($lastname);
$customer->setPassword($password);
$customer->setGender(
Mage::getResourceModel('customer/customer')
->getAttribute('gender')
->getSource()
->getOptionId($gender)
);
}
同じように私は好きです:
$customer->setBirthday($date);
解決策はありますか?