0

在 magento 中,当一个人成为成员时,日期“created_at”会与配置文件一起保存。

如何从 magento 中检索此信息。我可以获得地址信息等,但不知道如何显示/获取用户创建帐户的日期。

我尝试了以下方法:

echo Mage::getResourceModel('customer/customer_collection')->addAttributeToSelect('cr‌​eated_at');

但不起作用。

谢谢。

4

1 回答 1

4

你试过这个:

$customer = Mage::getModel('customer/customer')->load(IDHERE);
//or
$customer = Mage::getModel('customer/customer')->loadByEmail('test@test.com');

echo $customer->getCreatedAtTimestamp();

你到底想在哪里得到这个?从客户会话中?还是您想获得任意客户,而不是当前客户?

于 2013-01-29T11:20:36.497 回答