markdown Magento 2 - 获取商店电话号码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Magento 2 - 获取商店电话号码相关的知识,希望对你有一定的参考价值。

### How to get the store phone number

```
https://magento.stackexchange.com/questions/125354/how-to-get-store-phone-number-in-magento-2
```

```
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$storeInformation = $objectManager->create('Magento/Store/Model/Information');
$storeInfo = $storeInformation->getStoreInformationObject($store);
$phone = $storeInfo->getPhone();
```

```
https://magento.stackexchange.com/questions/117098/magento-2-to-use-or-not-to-use-the-objectmanager-directly
```

以上是关于markdown Magento 2 - 获取商店电话号码的主要内容,如果未能解决你的问题,请参考以下文章

markdown Magento 2 - 获取属性选项

markdown Magento 2 - 获取属性选项

markdown Magento 2 - 获取图像路径

markdown Magento 2 - 获取图像路径

markdown Magento - 获取当前产品及其类别

markdown Magento - 获取当前产品及其类别