Magento get current customer id
Use the following code to get current logged in customer’s Id :
if(Mage::getSingleton('customer/session')->isLoggedIn()) { $customerData = Mage::getSingleton('customer/session')->getCustomer(); $customerId = $customerData->getId(); }