অনুশীলনের অংশ হিসাবে আমি আমার ডাটাবেস থেকে সমস্ত ব্যবহারকারীর ইমেলকে একটি পৃষ্ঠায় তালিকাভুক্ত করার চেষ্টা করছি। এখন পর্যন্ত আমার কাছে সবচেয়ে কাছেরটি
$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();
পাশাপাশি বেশ কয়েকটি অন্যান্য প্রকরণ, এখন আমি এই বিষয়টিতে পৌঁছে গেছি যে তারা যে আশায় কাজ করবে এই আশায় আমি এলোমেলোভাবে কমান্ডগুলি আঁকছি, যা আমি করতে পছন্দ করি না।
আমি কীভাবে আমার সমস্ত ব্যবহারকারীর জন্য ইমেলটি প্রদর্শন করব? (আমি আশা করি আমি খুব বেশি দূরে থাকব না)