数组中属性的条件语句

时间:2016-07-28 18:28:35

标签: php arrays magento if-statement

我有一个每天导入的数组。对于特定字段'special_price',我只想将其导入主网站>主网站商店> 默认商店视图

默认商店视图= 1

  protected function _getFieldNames()
        {
            return array(
                'company_number',
                'sku',
                'style_number',
                'name',
                'div_code',
                'div_desc',
                'color_code',
                'color',
                'size_type',
                'size',
                'price',
                'weight',
                'description',
                'special_price',
                'tax_code',
            );
        }

我可以这样实例化这个类:

$storeId = Mage::app()->getStore()->getStoreId();

我的问题是如何只为默认商店解析一个特定字段,让其他更新像往常一样运行。我假设我正在使用IF语句。

是否可以根据IF语句unset()该项目?

0 个答案:

没有答案