質問

How to get magento root file path in controller in Magento 2 ?

Like if my magento root file path is /var/www/html/magento in Controller file?

役に立ちましたか?

解決

You can get like this one :

protected $_dir;

public function __construct(\Magento\Framework\Filesystem\DirectoryList $dir) 
{
    $this->_dir = $dir;
}

public yourfunction()
{
   $this->_dir->getRoot(); // Output: /var/www/html/magento
}
ライセンス: CC-BY-SA帰属
所属していません magento.stackexchange
scroll top