รหัสต่อไปนี้
- ส่งคืนรหัสค่าของตัวเลือกที่เลือกสำหรับผลิตภัณฑ์นี้: 123,124
- เปลี่ยนเป็นอาร์เรย์: array (123,124)
- จากนั้นค้นหาฉลากของตัวเลือกเหล่านั้น: 123 => Aircoและ124 => Radio
- และส่งคืนค่าในสตริงข้อความ: Airco, Radio
$ _attribute_code = 'car_options';
$ car_options_csv = Mage :: getResourceModel ('แคตตาล็อก / ผลิตภัณฑ์') -> getAttributeRawValue ($ productId, $ _attribute_code, $ storeId); // คืนค่า: 123,124
$ car_options = explode (',', $ car_options_csv);
$ attributeId = Mage :: getResourceModel ('eav / entity_attribute') -> getIdByCode ('catalog_product', $ _ attribute_code);
$ attribute = Mage :: getModel ('catalog / resource_eav_attribute') -> load ($ attributeId);
$ attributeOptions = $ attribute -> getSource () -> getAllOptions ();
$ res = '';
foreach ($ attributeOptions เป็น $ a)
{
$ l = $ a ['label'];
$ m = $ a ['value'];
if (strlen (trim ($ l))> 0 && in_array ($ m, $ car_options))
{
$ res. = ตัด ($ l) ',';
}
}
echo substr ($ res, 0, -2) ;;