Answers:
直到Magento 2.0.7版为止,版本号一直保持AppInterface::VERSION
不变。
随着Magento 2.1的发布,常数被删除。
所以直到2.0.7,如果您检查显示版本的adminhtml页脚文件
它提到了\Magento\Framework\AppInterface::VERSION
常数。
但是自从Magento 2.1发行以来,页脚文件现在使用,\Magento\Backend\Block\Page\Footer::getMagentoVersion()
而该文件又称为\Magento\Framework\App\ProductMetadata::getVersion()
。
以前,ProductMetadata::getVersion()
用于返回常量的值\Magento\Framework\AppInterface::VERSION
,但现在它解析composer.json
以及composer.lock
和返回相应的Magento版本
因此,无论您使用的是2.0.x还是2.1.x上的哪个版本,如果使用该\Magento\Framework\App\ProductMetadata::getVersion()
方法,都将始终获得正确的Magento版本。
结论:
Magento 1:
Mage::getVersion() //will return the magento version
Magento 2:
//Updated to use object manager
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productMetadata = $objectManager->get('Magento\Framework\App\ProductMetadataInterface');
$version = $productMetadata->getVersion(); //will return the magento version
您可以在2.0.x版本中使用它:
echo \Magento\Framework\AppInterface::VERSION;
对于2.1版:
方式1,使用DI:
public function __construct(
\Magento\Framework\App\ProductMetadataInterface $productMetadata
) {
$this->productMetadata = $productMetadata;
}
public function getMagentoVersion()
{
return $this->productMetadata->getVersion();
}
方法2,直接使用ObjectManager:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productMetadata = $objectManager->get('Magento\Framework\App\ProductMetadataInterface');
echo $productMetadata->getVersion();
提及的解决方案从Magento 2.1开始不适用(\Magento\Framework\AppInterface::VERSION
已删除常数)
获取版本的新方法是从产品元数据实例检索它(从composer.json读取版本):
$productMetadata = new \Magento\Framework\App\ProductMetadata();
$version = $productMetadata->getVersion();
(最好将产品元数据作为注入到构造函数中\Magento\Framework\App\ProductMetadataInterface
)
除了其他答案,您还可以通过访问Magento 2网站获得主要版本(例如2.1)。/magento_version
万一有人必须手动找到它。基本的Magento模块版本位于此composer文件中:
vendor/magento/magento2-base/composer.json
同样如上述建议,要使以下代码起作用:
$productMetadata = new \Magento\Framework\App\ProductMetadata();
$version = $productMetadata->getVersion();
\Magento\Framework\App\ProductMetadata
现在要求实例化ComposerJsonFinder
时传递的实例。
我在发现的一个例子dev/tests/integration/testsuite/Magento/Framework/Composer/ComposerInformationTest.php
:
$directories = [
DirectoryList::CONFIG => [DirectoryList::PATH => __DIR__ . '/_files/'],
DirectoryList::ROOT => [DirectoryList::PATH => __DIR__ . '/_files/' . $composerDir],
DirectoryList::COMPOSER_HOME => [DirectoryList::PATH => __DIR__ . '/_files/' . $composerDir],
];
$this->directoryList = $this->objectManager->create(
'Magento\Framework\App\Filesystem\DirectoryList',
['root' => __DIR__ . '/_files/' . $composerDir, 'config' => $directories]
);
$this->composerJsonFinder = new ComposerJsonFinder($this->directoryList);
以上代码仅用于提供信息。您必须进一步挖掘才能使其工作。
对于喜欢Unix的用户
无需为此编写任何PHP代码。由于Magento 2利用了作曲器,因此使一切变得简单。您可以通过两种方式执行此操作:
检查composer.json并查找名为version的密钥。如果您像我一样喜欢使用终端,则可以在项目的根目录上执行类似的操作。
composer licenses | grep Version:
如果要检查其社区版本或企业版本,则返回M2的版本,然后执行以下操作:
composer licenses | grep Name:
只需检查magento2根目录上的composer.json文件,您会发现这样的文本
"version": "2.1.2",
composer.json
可能包含“ ^ 2.1”之类的版本约束,但未指明确切的版本。您应该检查composer.lock
文件以查看当前安装的确切版本。
尝试这个:
<?php echo __('Magento'); ?>
<?php echo __('ver. %1', \Magento\Framework\AppInterface::VERSION) ?>
对于2.1版:
<?php
$productMetadata = new \Magento\Framework\App\ProductMetadata();
$version = $productMetadata->getVersion();
?>
<?php echo __('ver. %1', $version) ?>
以下是一些检查Magento版本的方法
Mage::getVersion() //will return the magento version
检查Magento 2版本
您可以在2.0.x版本中使用它:
echo \Magento\Framework\AppInterface::VERSION;
对于2.1版:
第一种方法,使用DI:
public function __construct( \Magento\Framework\App\ProductMetadataInterface $productMetadata ) {
$this->productMetadata = $productMetadata;
}
public function getMagentoVersion() {
return $this->productMetadata->getVersion();
}
第二种方法,直接使用ObjectManager:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productMetadata = $objectManager->get('Magento\Framework\App\ProductMetadataInterface');
echo $productMetadata->getVersion();
您可以运行以下命令以获取Magento 2版本:
php bin/magento --version
实际上,由于Magento 2已利用其作曲器,因此您无需为此编写任何PHP代码。相反,有两种方法可以找到Magento 2版本:
首先,请尝试composer.json并查找version关键字。如果您更喜欢使用终端,则可以在项目的根目录中添加一些内容。
composer licenses | grep Version:
检查Magento 2版本天气的另一种方法是社区版或企业版,请输入以下内容
composer licenses | grep Name:
请在线试用该工具,它适用于magento1.x和magento2.x两个版本 https://www.talktojobs.com/check-magento-version/
composer.json
可能包含诸如“ ^ 2.1”之类的版本约束,该约束未指示确切的版本,因此Magento(也在)检查composer.lock
文件以查看当前安装的确切版本。