在magento中,当一个人成为会员时,日期“created_at”随个人资料一起保存。
如何从magento中检索此信息。我可以获取地址信息等,但无法确定如何显示/获取用户创建其帐户的日期。
我尝试了以下内容:
echo Mage::getResourceModel('customer/customer_collection')->addAttributeToSelect('created_at');
但是不起作用。
感谢。
答案 0 :(得分:4)
你试过这个:
$customer = Mage::getModel('customer/customer')->load(IDHERE);
//or
$customer = Mage::getModel('customer/customer')->loadByEmail('test@test.com');
echo $customer->getCreatedAtTimestamp();
你到底想要得到这个?来自客户会话?或者你是想要一个任意客户,而不是当前的客户?