एक अभ्यास के भाग के रूप में मैं अपने डेटाबेस से सभी उपयोगकर्ताओं के ईमेल को एक पृष्ठ पर सूचीबद्ध करने का प्रयास कर रहा हूं। अब तक सबसे पास जो मुझे मिला है वह है
$user = mage::getModel('customer/customer')->getCollection()->getData();
रिटर्न
array
0 =>
array
'entity_id' => string '1' (length=1)
'entity_type_id' => string '1' (length=1)
'attribute_set_id' => string '0' (length=1)
'website_id' => string '1' (length=1)
'email' => string 'john.doe@example.com' (length=20)
'group_id' => string '1' (length=1)
'increment_id' => string '000000001' (length=9)
'store_id' => string '1' (length=1)
'created_at' => string '2007-08-30 23:23:13' (length=19)
'updated_at' => string '2008-08-08 12:28:24' (length=19)
'is_active' => string '1' (length=1)
'disable_auto_group_change' => string '0' (length=1)
1 =>
array
'entity_id' => string '2' (length=1)
'entity_type_id' => string '1' (length=1)
'attribute_set_id' => string '0' (length=1)
'website_id' => string '1' (length=1)
'email' => string 'tony09uk@gmail.com' (length=18)
'group_id' => string '1' (length=1)
'increment_id' => null
'store_id' => string '1' (length=1)
'created_at' => string '2013-07-19 14:31:00' (length=19)
'updated_at' => string '2013-07-19 14:31:00' (length=19)
'is_active' => string '1' (length=1)
'disable_auto_group_change' => string '0' (length=1)
लेकिन मैं केवल यह चाहता हूं कि उनके ईमेल को सूचीबद्ध किया जाए मैंने जादू पाने वालों और बसने की कोशिश की है लेकिन नोलक (या कम से कम जिस तरह से ive ने उनका इस्तेमाल किया है) नहीं। मैंने भी कोशिश की है
$user = mage::getModel('customer/customer')->getCollection()->load();
तथा
$user = mage::getModel('customer/customer')->getCollection()
->addAttributeToSort('email', 'ASC');
तथा
$user = mage::getModel('customer/customer')->getCollection()->getEmail()->getData();
तथा
$user = mage::getModel('customer/customer')->getCollection()->getData();
echo $user->getEmail();
और साथ ही कई अन्य विविधताओं के बाद, अब मुझे इस बात पर ध्यान आ गया है कि मैं इस काम में आशा से बेतरतीब ढंग से चिपके हुए आज्ञाओं को पूरा कर रहा हूं, जो मुझे करना पसंद नहीं है।
मैं अपने सभी उपयोगकर्ताओं के लिए ईमेल कैसे प्रदर्शित करूँ? (मुझे आशा है कि मैं निशान से दूर नहीं हूँ)